﻿.paper-form {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0px 0px 12px rgba(0,0,0,0.05);
}

.form-center {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.mud-black-text:not(.mud-disabled) .mud-input,
.mud-black-text:not(.mud-disabled) .mud-input-label,
.mud-black-text:not(.mud-disabled) .mud-input-label-text,
.mud-black-text:not(.mud-disabled) .mud-input-placeholder,
.mud-black-text:not(.mud-disabled) .mud-checkbox-label {
    color: black;
}

.mud-disabled .mud-input-root,
.mud-disabled input,
.mud-disabled .mud-input,
.mud-disabled .mud-input-slot,
.mud-disabled .mud-select,
.mud-disabled .mud-picker,
.mud-input.mud-disabled,
.mud-disabled label {
    background-color: #f3f3f3;
    color: #9e9e9e;
    opacity: 1;
    cursor: not-allowed;
    border-radius: 4px;
}

.vagas-card {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    background-color: #f8f9fb;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.vagas-label {
    font-size: 0.9rem;
    color: #0000FF;
    font-weight: 600;
    margin-bottom: 4px;
}

.vagas-numero {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
}

#salvarButton {
    color: white;
    background-color: #4169E1;
    font-weight: 600;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.15);
    padding: 6px 20px;
}

.nao-autorizado-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
}

.mud-input-input:disabled {
    color: #9e9e9e !important;
}

.mud-input-input {
    color: black;
}

.mud-input-root.mud-disabled,
.mud-input.mud-disabled,
input.mud-input:disabled {
    background-color: #f5f5f5 !important;
    color: #9e9e9e !important;
}

.custom-focus-border > .mud-input-control-input-container > .mud-input.mud-input-outlined > input:focus ~ .mud-input-outlined-border {
    border-color: #0000FF !important;
}

.overlay-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
}

.overlay-text {
    margin-top: 16px;
}


.mensagem-nao-autorizado {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

input {
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

    input:focus {
        outline: none;
    }


/* Telas pequenas: celulares até 768px */
@media (max-width: 768px) {
    .form-center {
        padding: 16px;
    }
}

/* Telas médias: tablets ou monitores HD padrão */
@media (min-width: 769px) and (max-width: 1366px) {
    .form-center {
        max-width: 500px;
    }
}

/* Telas grandes: 1920x1080 e acima */
@media (min-width: 1367px) and (max-width: 1920px) {
    .form-center {
        max-width: 540px;
    }
}

/* Telas muito grandes: acima de 1921px (ex: 2K, 4K) */
@media (min-width: 1921px) {
    .form-center {
        max-width: 580px;
    }
}
