@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --doctum-blue: #065098;
    --doctum-light-blue: #e6f0f8;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.login-container {
    max-width: 450px;
    width: 100%;
    padding: 2rem;
}

.login-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-header {
    background-color: var(--doctum-blue);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.login-body {
    padding: 2rem;
    background-color: white;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--doctum-blue);
    box-shadow: 0 0 0 0.25rem rgba(6, 80, 152, 0.25);
}

.btn-doctum {
    background-color: var(--doctum-blue);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-doctum:hover {
    background-color: #054280;
    color: white;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    height: 70px;
    width: auto;
}

.support-btn {
    position: fixed;
    right: 90px;
    bottom: 20px;
    background-color: var(--doctum-blue);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s;
}

.support-btn:hover {
    transform: scale(1.1);
    color: white;
}

.senha-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
}

.senha-container {
    position: relative;
}

.esqueceu-a-senha {
    text-align: right;
    margin-top: 0.5rem;
}

.esqueceu-a-senha a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
}

.esqueceu-a-senha a:hover {
    color: var(--doctum-blue);
}

/* Modal Styles */
.modal-doctum .modal-header {
    background-color: var(--doctum-blue);
    color: white;
}

.modal-doctum .btn-primary {
    background-color: var(--doctum-blue);
    border-color: var(--doctum-blue);
}

.helpdesk-link {
    word-break: break-all;
}

.btn-sso {
    background-color: white;
    color: var(--doctum-blue);
    border: 2px solid var(--doctum-blue);
    padding: 0.6rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 80%;
    box-shadow: 0 2px 4px rgba(6, 80, 152, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-sso:hover {
    background-color: rgba(6, 80, 152, 0.05);
    color: var(--doctum-blue);
    border-color: var(--doctum-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(6, 80, 152, 0.15);
}

.btn-sso:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(6, 80, 152, 0.1);
}

.btn-sso i {
    margin-right: 10px;
    color: var(--doctum-blue);
    transition: transform 0.3s ease;
}

.btn-sso:hover i {
    transform: scale(1.1);
}

.btn-sso::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 80, 152, 0.1), transparent);
    transition: left 0.7s ease;
}

.btn-sso:hover::after {
    left: 100%;
}