﻿.toast-odonto .toast {
    background-color: #101f48;
    color: antiquewhite;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 94, 255, 0.25);
    overflow: hidden;
    min-width: 300px;
    animation: slideUp 0.4s ease;
}

.toast-header-odonto {
    background-color: #0c1635;
    color: #fff;
    font-weight: bold;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toast-body-odonto {
    padding: 1rem;
    font-size: 15px;
}

.toast-odonto .btn-close {
    filter: invert(1);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-odonto-padrao {
    background-color: #101f48;
    color: antiquewhite;
    transition: all 0.3s ease;
}

    .btn-odonto-padrao:hover {
        background-color: #005eff;
        color: #ffffff;
        box-shadow: 0 0 15px rgba(0, 94, 255, 0.5);
        transform: scale(1.03);
        accent-color: #005eff;
    }

.btn-odonto-outline {
    background-color: transparent;
    color: #101f48;
    border: 2px solid #101f48;
    transition: all 0.3s ease;
}

    .btn-odonto-outline:hover {
        background-color: #101f48;
        color: antiquewhite;
        box-shadow: 0 0 15px rgba(16, 31, 72, 0.4);
        transform: scale(1.03);
    }

.text-odonto-padrao {
    color: #101f48;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 10px 15px;
}

    .form-control:focus, .form-select:focus {
        border-color: #101f48;
        box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
    }

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    margin-right: 25px;
    font-size: 1.2rem;
}

    .password-toggle:hover {
        color: #101f48;
    }

.card {
    margin-top: 5px;
    margin-bottom: 5px;
}

label.small {
    color: #6c757d;
    font-style: italic;
}

.required::after {
    content: " *";
    color: red;
}

.step-header {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
}

.step-btn {
    flex: 1;
    text-align: center;
    padding: 1rem;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all .3s;
    font-weight: 500;
}

    .step-btn.active {
        color: #101f48;
        border-color: #101f48;
        background-color: #e9f2ff;
    }

.step-section {
    display: none;
}

    .step-section.active {
        display: block;
        animation: fadeIn .4s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
