
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html, body {
        height: 100%;
        font-family: 'Segoe UI', sans-serif;
        
    }
    body {
        background-color: #2b3a59; /* <- essa cor será vista nas laterais */
        margin: 0;
        padding: 0;
        height: 100vh;
        overflow: hidden; /* impede scroll inesperado */
        

    }

    .register-wrapper {
        display: flex;
        height: calc(100vh - 50px);
        width: 99%;
    }

    .register-left {
        flex: 1;
    }

    .register-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .register-right {
        width: 400px;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 40px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
        
    }

    .register-right h2 {
        text-align: center;
        margin-bottom: 24px;
        color: #333;
    }

    label {
        display: block;
        margin-bottom: 6px;
        color: #555;
        font-weight: bold;
    }

    input {
        width: 100%;
        padding: 12px;
        margin-bottom: 16px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 14px;
    }

    input[type="submit"] {
        background: #0066cc;
        color: white;
        font-weight: bold;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    input[type="submit"]:hover {
        background: #004c99;
    }

    .error-message {
        color: #c00;
        background-color: #ffe5e5;
        padding: 2px;
        margin-bottom: 20px;
        border-radius: 0px;
        text-align: center;
        border: 0px solid #f00;
        display: block; /* padrão: escondido */
        opacity: 0;
        animation: fadeIn 0.5s forwards;
    }
    
    
    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }

    .success-message {
        background-color: #e6ffe6;
        border: 1px solid #00aa00;
        color: #006600;
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 8px;
        text-align: center;
        font-weight: bold;
    }

    .options-links {
        text-align: center;
        margin-top: 16px;
    }

    .options-links a {
        color: #0066cc;
        text-decoration: none;
        margin: 0 10px;
    }

    .options-links a:hover {
        text-decoration: underline;
    }
    .login-logo {
        width: 45px;
        height: 45px;
        display: block;
        margin: 0 auto 20px;
    }
    .input-icon-r {
        position: relative;
        margin-bottom: 2px;
    }
    
    .input-icon-r i {
        position: absolute;
        top: 40%;
        left: 12px;
        transform: translateY(-50%);
        color: #999;
        font-size: 14px;
    }
    
    .input-icon-r input {
        width: 100%;
        padding: 12px 12px 12px 38px; /* espaço para o ícone */
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 14px;
        transition: border-color 0.3s ease;
    }
    
    .input-icon-r input:focus {
        border-color: #0066cc;
        box-shadow: 0 0 4px rgba(0, 102, 204, 0.2);
        outline: none;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    
        
    .login-footer {
        margin-top: auto;
        font-size: 12px;
        text-align: center;
        color: #888;
        padding-top: 20px;
    }
    .divider-ou {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 24px 0 16px;
    }
    
    .divider-ou span {
        font-weight: bold;
        color: #666;
        font-size: 14px;
    }
    .google-login-wrapper {
        text-align: center;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
    
    .google-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 16px;
        background: #ffffff;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 14px;
        font-weight: bold;
        color: #444;
        cursor: pointer;
        transition: background 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .google-button:hover {
        background: #f5f5f5;
    }
    
    .google-button img {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }



    @media (max-width: 768px) {
        .register-wrapper {
            flex-direction: column;
        }

        .register-left {
            display: none;
        }

        .register-right {
            width: 100%;
            padding: 40px 20px;
        }
    }
