body {
    width: 100%;
    margin: 0 auto;
    background-color: #4f46e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #333;
}

.login-form p {
    margin: 0;
}

.login-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 4rem 6rem;
    background-color: black;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.login-form-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-form-title-greeting {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e8efb;
    gap: 4px;
}

.login-form h2 {
    color: #6e8efb;
    font-size: 3rem;
    text-align: center;
    margin: 0;
    font-weight: 600;
}

.login-form-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-form label {
    font-size: 14px;
    font-weight: 500;
    color: #6e8efb;
}

.login-form input {
    padding: 12px 16px;
    border: 2px solid #4f46e5;
    border-radius: 8px;
    font-size: 16px;
    background-color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #6e8efb;
    box-shadow: 0 0 0 3px rgba(110, 142, 251, 0.2);
}

.login-form input::placeholder {
    color: #a0aec0;
    font-size: 14px;    
}
.login-form-remember {
    display: flex;
    align-items: center;
    gap: 8px;
}
.login-form-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-form-footer button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6e8efb;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    gap: 8px;
}
.other-info {
    margin-top: 1.5rem;
    text-align: center;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.other-info p {
    margin: 0 0 1rem 0;
    color: #a0aec0;
}

.other-info span {
    color: #6e8efb;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s ease;
}

.other-info span:hover {
    color: #5a7bd8;
    text-decoration: underline;
}

.find-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.find-info button {
    background: none;
    border: none;
    color: #a0aec0;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.find-info button:hover {
    color: #6e8efb;
    background: rgba(110, 142, 251, 0.1);
}

.find-info button i {
    font-size: 0.9rem;
}