
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.registration-card {
    display: flex;
    width: 800px;
   background-color: rgba(23, 3, 3, 0.6);
        border-radius: 15px;
    padding: 10px;
}

.profile-placeholder {
    width: 150px;
    height: 150px;
    background-color: rgb(212, 215, 216); 
    color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 14px;
    padding: 10%;
    margin-top: 10%;
}

body {
    font-family: Arial, sans-serif;
    background-image: url(tree.gif);
    background-size: cover;
    background-position: center;
    color: #e2d9d9;
    line-height: 1.6;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 40px;

    background-color: rgba(23, 3, 3, 0.6);
    
    
}





.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: rgb(255, 244, 244);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}


body {
    padding-top: 100px;
}


.container {
    background-color: rgba(209, 136, 46, 0.6);
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(160, 124, 124, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}


h1, h2, h3 {
    margin-bottom: 20px;
}


input[type="text"],
input[type="number"],
input[type="email"],
button {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0;
    border: 1px solid #5d3e3e;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus {
    border-color: #8b5b4a;
    outline: none;
}

button {
    background-color: #451a09;
    color: rgb(244, 212, 161);
    cursor: pointer;
    font-weight: bold;
    border: none;
}

button:hover {
    background-color: #ef4010;
}


a {
    color: #d2d2d2;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

a:hover {
    text-decoration: underline;
}


#result {
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.2rem;
}

.right-panel {
    width: 60%;
    padding-left: 20px;
}

.right-panel h1 {
    margin-bottom: 10px;
}

.instructions {
    font-size: 14px;
    margin-bottom: 15px;
}

form label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

form input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
}

.row {
    display: flex;
    gap: 10px;
}

.row div {
    flex: 1;
}

.terms {
    margin-top: 5px;
    font-size: 15px;
}

.submit-btn {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background-color:#451a09;
    border: none;
    color: rgb(244, 212, 161);
    border-radius: 5px;
    cursor: pointer;
}

.cancel-btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background-color: #e3d8d8;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}




@media (max-width: 480px) {

    .container {
        padding: 20px;
    }

    input[type="text"],
    input[type="number"],
    input[type="email"],
    button {
        font-size: 14px;
    }

    .nav-links {
        gap: 15px;
    }
}