
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color:  #f8f9fa;
    background-image: url("https://th.bing.com/th/id/OIP.CdI9iwMABb1hcOwYjoGl_gHaEK?w=315&h=180&c=7&r=0&o=5&dpr=1.3&pid=1.7");
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


nav {
    background-color: white;
    color: var(--text-color);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 50px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color:#4caf50;
}

nav ul {
    display: flex;
    list-style-type: none;
    align-items: center;
    gap: 2rem;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

nav ul li a:hover {
    color: #4caf50;
}

main {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://th.bing.com/th/id/OIP.eymKZfze3oAUg0DZ8znQHwHaEJ?w=326&h=183&c=7&r=0&o=5&dpr=1.3&pid=1.7');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.register-container {
    background-color: #72e8fff2;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    animation: fadeIn 0.5s ease-out;
    margin-top: 1px;
}



h2 {
    text-align: center;
    color: #3640f4;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.subtitle {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 300;
}

.form-group {
    margin-bottom: 1.5rem;
}

input,
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

input:focus,
select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.btn-register {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color:  #08e7f7;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    border: solid 4px rgb(67, 106, 198);
}

.btn-register:hover {
    background-color: #305fb8;
}

.btn-register:active {
    transform: scale(0.98);
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.login-link a {
    color: #8707fe;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

footer {
    background-color: #37344e;
    color: white;
    text-align: center;
    padding-bottom: 25px;
}

.social-links {
    margin-bottom: 0.4rem;
    text-align: right;
    padding-top: 10px;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    padding-left: 40px;
}
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .register-container {
        margin: 2rem;
        padding: 2rem;
    }
}