﻿body {
    background: #f0f2f8;
}

.card {
    animation: cardIn .45s cubic-bezier(.22,.68,0,1.2) both;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(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;
    }

.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;
    }
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem 0 0 1rem;
    box-shadow: 8px 0 15px -5px rgba(0,0,0,0.5);
}

.required::after {
    content: " *";
    color: red;
}

.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;
    font-size: 1.2rem;
    margin-right: 25px;
}

    .password-toggle:hover {
        color: #101f48;
    }
