:root {
    --primary-color: #FF9900;
    --secondary-color: #1682CE;
    --bg-color: #211C17;
    --text-color: #fff;
    --hover-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* Cor de fundo */
    color: #fff; /* Cor do texto */
    height: 100%;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

a {
    text-decoration: none;
    color: inherit; /* Herdar cor do texto */
}

.login-container {
    width: 90%;
    max-width: 60vh;
    max-height: 90vh;
    margin: auto;
    padding: 20px;
    background: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    overflow-x: auto;
}

h1 {
    text-align: center;
    color: #000000; /* Cor do texto ajustada para branco */
    margin-bottom: 40px;
    font-size: 2.5em;
}

h2 {
    text-align: center;
    color: #000; /* Cor do texto ajustada para branco */
    margin-bottom: 40px;
    font-size: 2.5em;
}


form {
    display: flex;
    flex-direction: column; 
    margin: auto;
    max-width: 50vh;
    gap: 15px;
}

.btn-new-pass{
    background-color: #FF9900;
    border: 2px solid #de8602;
    border-radius: 15px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    margin: auto;
    min-height: 60px;
    min-width: 0;
    text-align: center;
    padding: 16px 24px;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
}

.btn-new-pass:hover{
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

button {
    appearance: none;
    background-color: #FF9900;
    border: 2px solid #de8602;
    border-radius: 15px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 20px auto;
    min-height: 60px;
    min-width: 0;
    outline: none;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
  }
  
  button:disabled {
    pointer-events: none;
  }
  
  button:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
  }
  
  button:active {
    box-shadow: none;
    transform: translateY(0);
  }  

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px; /* Adicionado espaço inferior entre os grupos de formulários */
}

form label {
    font-size: 1rem;
    color: #fff; /* Aumentei o tamanho da fonte do label */
}

form input, form select {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #fff;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 100%; /* Ocupa toda a largura disponível */
}

form select option {
    background-color: #211C17;
    color: #fff;
}

.notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 300px;
    max-width: 80%;
}

.notification {
    position: relative;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-in-out, fadeOut 4s linear 1s;
}

.notification.success {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.notification.error {
    background-color: #f44336;
    color: white;
    border-color: #f44336;
}

.notification.warning {
    background-color: #ff9800;
    color: white;
    border-color: #ff9800;
}

.notification.info {
    background-color: #2196F3;
    color: white;
    border-color: #2196F3;
}

.btn-notification {
    width: 55px;
    height: 3px;
}

.notification .close-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

@keyframes slideIn {
    from { right: -300px; }
    to { right: 20px; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
