﻿/* Estilos base */
:root {
    --color-primary: #D54700;
    --color-neutral: #FCFCFC;
    --color-text-primary: #323233;
    --color-text-secondary: #646566;
    --color-border: #D5D6D9;
    --color-bg: #F9F9F9;
}

body {
    margin: 0;
    font-family: 'Geologica', sans-serif;
    background: var(--color-bg);
    overflow: hidden; /* Impede o scroll indesejado */
    height: 100vh;
}

.reset-password-container {
    display: flex;
    height: 100vh;
    flex-wrap:wrap;
}

.form-section {
    width: 40%;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.form-content {
    max-width: 362px;
    width: 100%;
    margin: 0 auto;
}

.form-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-secondary);
    line-height: 24px;
}

.form-group {
    margin-bottom: 24px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        color: var(--color-text-secondary);
        margin-bottom: 4px;
    }

.form-control {
    width: 100%;
    height: 48px;
    padding: 4px 16px;
    font-size: 14px;
    border: 1px solid #A3A4A6;
    transition: border-color 0.3s ease;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-control:hover {
    border-color: #ff691f;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-primary {
    height: 40px;
    background-color: #dd5100;
    color: var(--color-neutral);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
}

.btn-tertiary {
    height: 40px;
    background: transparent;
    color: #dd5100;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
}

.footer {
    position: absolute;
    bottom: 80px;
    left: 80px;
    font-size: 12px;
    color: #9E9E9E;
}

.image-section {
    width: 60%;
    background: url(/img/sideBanner.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-neutral);
    position: relative;
}

img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position:relative;
    bottom:60px;
}

.platform-label {
    height: 200px;
    width: 200px;
    display:flex;
}

.partnership-section > h1 {
    color: #fff3eb;
    font-size: 38px;
    text-align: center;
    font-weight: bold;
    margin-top: 260px;
    padding: 0 20px;
}

.partnership-section h2 {
    color: #fff3eb;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 14px;
}

.alert-info {
    background-color: #e7f5ff;
    color: #1864ab;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 24px;
}

@media (max-width: 1200px) {
    .form-section {
        padding: 40px;
    }

    .footer {
        left: 40px;
        bottom: 40px;
        text-align:center;
    }

    .partnership-section {
        margin-top: 120px;
        padding: 0 20px;
    }
}