body.form-body {
    margin: 0;
    padding: 0;
    background-color: #121212;
    font-family: 'Inter', sans-serif;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.form-header {
    width: 100%;
    padding: 20px;
    background-color: #000;
    text-align: left;
}

.form-logo {
    text-decoration: none;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
}

.form-container {
    background-color: #f9f9f9;
    color: #333;
    margin-top: 40px;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 400px;
}

.form-container h2 {
    text-align: center;
    color: #111;
}

.form-container label {
    display: block;
    margin-top: 15px;
    color: #555;
    font-weight: 600;
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.form-container button {
    width: 100%;
    padding: 12px;
    margin-top: 25px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-container button:hover {
    background-color: #444;
}

.redirect-text {
    margin-top: 15px;
    text-align: center;
    color: #555;
}

.redirect-text a {
    color: #000;
    text-decoration: underline;
}
