/* LOGIN CARD */
.login-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(115, 103, 240, 0.15);
    margin-top: 10px;
}

/* CARD TITLE */
.vrt-card-title {
    font-size: 1rem;
    color: #478FCA;
    font-weight: 400;
    margin-bottom: 25px;
    text-align: center;
}

/* FORM GROUPS */
.vrt-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.vrt-form-group label {
    font-weight: 600;
    color: #7367f0;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

/* INPUTS */
.vrt-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dbdade;
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
    transition: 0.3s;
}

.vrt-input:focus {
    border-color: #7367f0;
    box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.15);
}

/* BUTTON */
.vrt-form-actions {
    margin-top: 15px;
    text-align: center;
}

.vrt-form-actions .btn {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.2s;
}

.vrt-form-actions .btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.authentication-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.authentication-inner {
    width: 100%;
    max-width: 420px;
}