:root {
            --black: #030304;
            --red: #ED151D;
            --gray-dark: #333334;
            --white: #FFFFFF;
            --gray-light: #f5f5f5;
            --border-radius: 16px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--gray-light);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        .login-card {
            display: flex;
            width: 100%;
            max-width: 1000px;
            background-color: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            padding: 10px;
        }

        .image-panel {
            flex: 1.2;
            position: relative;
            background-image: url('../images/loginshorrom.jpg');
            background-size: cover;
            background-position: center;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            text-align: center;
            background-position: center 70%;
        }

        .image-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
        }

        .image-frame {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 3px solid var(--white);
            border-radius: calc(var(--border-radius) - 5px);
            pointer-events: none;
        }

        .carousel-controls {
            position: absolute;
            bottom: 30px;
            right: 30px;
            display: flex;
            gap: 15px;
            z-index: 2;
        }

        .control-button {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--gray-dark);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .control-button:hover {
            background-color: var(--white);
            transform: scale(1.05);
        }

        .form-panel {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .brand {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;
        }

        .brand img {
            height: 45px;
        }

        .welcome-title {
            color: var(--black);
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .welcome-subtitle {
            color: var(--gray-dark);
            font-size: 14px;
            margin-bottom: 30px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-input {
            width: 100%;
            padding: 15px;
            border: 1px solid #e1e1e1;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            border-color: var(--red);
            outline: none;
            box-shadow: 0 0 0 2px rgba(237, 21, 29, 0.1);
        }



        /* CÓDIGO A SER ADICIONADO AO FINAL DE login.css */

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .form-options a {
            color: var(--gray-dark);
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
        }

        .form-options a:hover {
            color: var(--red);
        }

        .back-button i {
            margin-right: 6px;
            /* Espaço entre o ícone e o texto "Voltar" */
        }

        /* FIM DO CÓDIGO A SER ADICIONADO */


        .separator {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 25px 0;
            color: var(--gray-dark);
            font-size: 14px;
        }

        .separator::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #e1e1e1;
            margin-left: 10px;
        }

        .login-button {
            width: 100%;
            padding: 15px;
            background-color: var(--red);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 25px;
        }

        .login-button:hover {
            background-color: #d0121a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(237, 21, 29, 0.3);
        }

        .login-button:active {
            transform: translateY(0);
        }

        .signup-text {
            text-align: center;
            color: var(--gray-dark);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .signup-text a {
            color: var(--red);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .signup-text a:hover {
            text-decoration: underline;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-icon {
            color: var(--gray-dark);
            font-size: 18px;
            transition: color 0.3s ease;
        }

        .social-icon:hover {
            color: var(--black);
        }

        .error-message {
            color: var(--red);
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        @media (max-width: 900px) {
            .login-card {
                flex-direction: column;
                max-width: 500px;
            }

            .image-panel {
                min-height: 250px;
                border-radius: var(--border-radius) var(--border-radius) 0 0;
            }

            .image-panel::before {
                border-radius: var(--border-radius) var(--border-radius) 0 0;
            }

            .image-frame {
                border-radius: calc(var(--border-radius) - 5px) calc(var(--border-radius) - 5px) 0 0;
            }
        }

        @media (max-width: 480px) {
            .form-panel {
                padding: 30px 20px;
            }

            .welcome-title {
                font-size: 24px;
            }

            .top-buttons {
                flex-direction: column;
                gap: 10px;
            }
        }

        .info-card {
            position: relative;
            z-index: 2;
            color: var(--white);
            padding: 40px;
            padding-top: 30%;
            text-align: left;
        }

        .info-card h3 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.1;
            color: var(--white);
        }

        .info-card .highlight {
            color: var(--red);
        }

        .info-card p {
            font-size: 18px;
            margin-bottom: 25px;
            line-height: 1.5;
            max-width: 90%;
            color: #ccc;
            font-weight: 300;
        }

        @media (max-width: 900px) {
            .info-card {
                padding: 35px;
                text-align: left;
            }

            .info-card h3 {
                font-size: 26px;
            }

            .info-card p {
                font-size: 14px;
                margin-bottom: 15px;
                max-width: 100%;
            }
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.6);
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 12px;
            max-width: 400px;
            width: 90%;
            text-align: center;
        }

        .modal h2 {
            margin-bottom: 20px;
        }

        .modal input {
            width: 100%;
            padding: 12px;
            border: 1px solid #e1e1e1;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .modal button {
            padding: 12px 20px;
            background-color: var(--red);
            border: none;
            color: #fff;
            border-radius: 8px;
            cursor: pointer;
        }

        .modal button:hover {
            background-color: #c01018;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 20px;
            cursor: pointer;
        }