
.req-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-box {
    background-color: #222;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.social-login {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.social-login a {
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-login img {
    width: 24px;
    height: 24px;
}

.or-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.or-divider p {
    margin: 0 10px;
}

.or-divider span {
    flex: 1;
    height: 1px;
    background-color: #444;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 15px;
}

 input[type="password"] {
    width: 48%;
    padding: 10px;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 5px;
    color: white;
}

input::placeholder {
    color: #aaa;
}

.remember-me {
    align-self: flex-start;
    margin-bottom: 15px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #6200ea;
    border: none;
    color: white;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #4500b3;
}

.options {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 10px 0;
}

.options a {
    font-size: 0.9rem;
    color: #bbb;
    text-decoration: none;
}

.options a:hover {
    text-decoration: underline;
}

.create-account a {
    font-size: 1rem;
    color: #bbb;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.create-account a:hover {
    text-decoration: underline;
}

.theme-toggle {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme-toggle p {
    margin-right: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 34px;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: white;
    bottom: 3px;
    left: 4px;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #6200ea;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* Responsive layout for mobile devices */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    input[type="email"], input[type="password"] {
        width: 100%;
        margin-bottom: 10px;
    }
}
