﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    height: 60px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;
    background-color: white;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    color: #376C6E;
}

.main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.card {
    background-color: white;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    max-width: 550px;
    width: 100%;
    text-align: center;
}

.card h1 {
    margin: 0 0 8px;
    font-size: 24px;
    color: #376C6E;
}

.card p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 24px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    text-align: left;
}

.form-group label {
    background-color: white;
    font-size: 12px;
    color: #b5b5b6;
    margin-bottom: 4px;
    position: absolute;
    top: -8px;
    left: 10px;
    padding: 0 5px;
}

.form-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: transparent;
}

.actions {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.btn {
    padding: 10px 24px;
    background-color: #00695c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.link {
    color: #00695c;
    text-decoration: none;
    font-size: 14px;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    padding: 20px 0;
}

.forgot-password {
    margin-left: 10px !important;
    color: #336a6b;
}
.brand-badge {
    font-size: 14px;
    border: 1px solid #336a6b;
    border-radius: 5px;
    padding: 2px 6px;
    color: #336a6b;
    margin-left: 5px;
}
.logo_pag {
    justify-content: center;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 8px;
    white-space: nowrap;
}