/* Edit Account Styles */
.edit-account-wrapper .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.edit-account-wrapper .form-control:focus {
    border-color: #00A79E;
    background-color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(0, 167, 158, 0.1);
}

.edit-account-wrapper .xsmall {
    font-size: 0.75rem;
}

/* Teal accents */
.text-teal {
    color: #00A79E !important;
}

.border-teal {
    border-color: #00A79E !important;
}

/* Required star */
.required {
    color: #dc3545;
    text-decoration: none;
}

/* Card separation */
.edit-account-wrapper .card {
    transition: transform 0.2s ease;
}

.edit-account-wrapper .card:hover {
    transform: translateY(-2px);
}