.auth-card {
    background: rgb(255 255 255 / 95%);
    border: 5px solid #8d80ff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 15px;
    color: #000000;
}

.auth-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000000;
    text-align: center;
}

.form-label {
    font-weight: bold;
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid #8d80ff;
    border-radius: 5px;
    padding: 10px;
    background-color: #fffaf0;
    transition: border-color 0.3s ease;
    height: 50px;
}

.form-control:focus {
    border-color: rgba(141, 128, 255, 0.73);;
    box-shadow: 0 0 5px rgba(141, 128, 255, 0.73);;
}

.btn-fantasy {
    background-color: #fcfcfc;
    color: #8d80ff;
    padding: 10px 20px;
    border-radius: 8px;
    border: solid 1px #8d80ff;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-fantasy:hover {
    background-color: rgba(141, 128, 255, 0.73);
    color: white;
}

.login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #8d80ff;
    width: 100%;
    text-decoration: underline;
}
.password-input{
    border: 2px solid #8d80ff;
    border-left: none !important;
}
