.card {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.custom-card {
    display: flex;
    align-items: center;
    padding: 0 20px;
    background-color: #F5F5F5 !important;
    border-radius: 10px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
    background-color: #e0e0e0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.15);
}

.custom-card .img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ABD4CA;
    display: flex;
    place-items: center;
}

.custom-card .img img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

.custom-card .content {
    margin-left: 10px;
    background-color: #F5F5F5 !important;
}

.custom-card .content p {
    font-weight: bolder !important;
    color: black !important;
}

.custom-card .content h5 {
    margin: 0;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-parto {
    background-color: #208b6a;
    border-radius: 7px;
    padding: 7px 10px;
    color: white;
    font-size: 1em;
}

.btn-parto:hover {
    background-color: #1a7258;
    color: white;
}

.btn-parto-secondary {
    border: 2px solid #208b6a;
    background-color: white;
    border-radius: 7px;
    padding: 7px 10px;
    color: #208b6a;
    font-size: 1em;
}

.btn-parto-secondary:hover {
    background-color: #1a7258;
    color: white;
}

.form-input {
    border-radius: 7px !important;
    border: 2px solid #208b6a !important;
    height: 40px !important;
}

.mb-3 {
    margin-bottom: 15px !important;
}

label {
    margin-bottom: 10px;
}

.input-group {
    display: -webkit-box !important;
}

#togglePassword {
    height: 40px !important;
    border-top-right-radius: 7px !important;
    border-bottom-right-radius: 7px !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0% !important;
    border: 2px solid #208b6a !important;
    border-left: 0px !important;
}

#password {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

#submit-btn {
    color: white !important;
}

.addon {
    height: 40px !important;
    border-bottom-left-radius: 7px !important;
    border-top-left-radius: 7px !important;
}

.nice-select {
    width: 100% !important;
    padding: 0 10px !important;
    margin-bottom: 20px !important;
    height: 42px !important;
}

/* Register Page */
.register-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-top: 20px;
}

.register-card-inner {
    min-height: 400px;
}

.register-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-content {
    width: 100%;
    max-width: 380px;
}

.register-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.role-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 12px;
    margin-bottom: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.role-card:hover {
    background-color: #e8e8e8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.role-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: #abd4ca;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.role-icon i {
    font-size: 24px;
    color: #0e5d4a;
}

.role-info h5 {
    margin: 0 0 8px 0;
    font-size: 1em;
    font-weight: bold;
    color: #1a1a1a;
}

.role-info p {
    margin: 0;
    font-size: 0.85em;
    color: #555;
    line-height: 1.5;
}

.register-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-illustration img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .register-card {
        padding: 24px;
        margin-top: 10px;
    }

    .register-card-inner {
        min-height: auto;
    }

    .register-right {
        margin-top: 30px;
    }

    .register-illustration img {
        max-width: 250px;
    }
}