@charset "ISO-8859-1";

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background-color: #111;
}

.geral {
    background-image: url('../img/bg-login.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.topnav {
    position: absolute;
    top: 20px;
    left: 20px;
}

.topnav img {
    height: 40px;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.8));
}

#child {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.formlogin {
    /* Glassmorphism */
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.7);
    padding: 40px 30px;
    width: 380px;
    text-align: center;
}

.margem {
    margin: 0;
}

.input-container {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 10px 15px;
    transition: border-color 0.3s ease;
}

.input-container:focus-within {
    border-color: #F9A01B; /* Caterpillar Yellow */
    box-shadow: 0 0 8px rgba(249, 160, 27, 0.3);
}

.input-container img {
    margin-right: 15px;
    filter: invert(0.7) sepia(1) hue-rotate(350deg) saturate(5) brightness(1.2); /* Tint yellow-ish */
}

.cxtext {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    width: 100%;
    outline: none;
}

.cxtext::placeholder {
    color: #999;
}

.button {
    background-color: #F9A01B; /* Caterpillar Yellow */
    color: #111;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s, transform 0.1s;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(249, 160, 27, 0.4);
}

.button:hover {
    background-color: #e08b0b;
}

.button:active {
    transform: scale(0.98);
}

.apps-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.apps-container img {
    height: 35px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.apps-container img:hover {
    opacity: 1;
}

.msg {
    color: #ff4d4d;
    font-size: 14px;
    margin-top: 15px;
    background: rgba(255, 0, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.apps-container a:nth-child(2) img {
    filter: invert(1) brightness(1.2);
    border-radius: 6px;
}
