* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #000; 
    color: #fff; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.forgot-password-form {
    background-color: #121212; 
    border: 1px solid #262626;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.forgot-password-form .logo {
    width: 150px;
    margin-bottom: 20px;
}

.forgot-password-form h1 {
    font-family: 'Instagram Sans', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.forgot-password-form .description {
    font-size: 0.9rem;
    color: #8e8e8e;
    margin-bottom: 20px;
    line-height: 1.5;
}

.forgot-password-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #262626;
    border-radius: 4px;
    background: #262626; 
    color: #fff;
    font-size: 0.9rem;
}

.forgot-password-form input::placeholder {
    color: #8e8e8e;
}

.forgot-password-form button {
    background-color: #0095f6; 
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 10px;
    width: 100%;
    margin: 10px 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.forgot-password-form button:hover {
    background-color: #0078cc;
    text-decoration: none;
}

.forgot-password-form .help-link {
    display: block;
    margin-top: 10px;
    color: #0095f6;
    font-size: 0.9rem;
    text-decoration: none;
}

.forgot-password-form .help-link:hover {
    text-decoration: none;
}

.separator {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #8e8e8e;
    font-size: 0.9rem;
}

.separator .line {
    flex: 1;
    height: 1px;
    background: #262626;
    margin: 0 10px;
}


.back-login {
    display: block;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    margin: 15px 0;
    font-size: 0.9rem;
    width: 100%;
    padding: 10px;
    border: 1px solid #262626;
    border-radius: 4px;
    background: #262626; 
    font-size: 0.9rem;
    position: relative;
    top: 30px;

}

.signup-link{
    display: block;
    color: #c2baba;
    font-weight: bold;
    text-decoration: none;
    margin: 10px 0;
    font-size: 0.85rem;
}

.signup-link:hover{
    text-decoration: none;
    color: #867c7c;
}

.back-login:hover {
    text-decoration: none;
    color: #c2baba;
    background-color: #252323;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .forgot-password-form {
        padding: 20px;
    }
}


::-webkit-scrollbar {
    width: 7px; 
    height: 12px; 
}


::-webkit-scrollbar-track {
    background-color: #323232; 
}


::-webkit-scrollbar-thumb {
    background-color: #4c4a4a; 
    border-radius: 2px; 
}


::-webkit-scrollbar-thumb:hover {
    background-color: #555555; 
}