
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f0f2f5;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            color: #333;
        }
        .container {
            display: flex;
            width: 80%;
            max-width: 1100px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        .form-section {
            flex: 1;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .logo {
            margin-bottom: 20px;
            text-align: center;
        }
        .logo img {
            max-width: 200px;
            height: auto;
        }
        .form-section h2 {
            font-size: 2.5em;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
        }
        .form-section p {
            color: #777;
            margin-bottom: 40px;
            text-align: center;
        }
        .form-group {
            width: 100%;
            margin-bottom: 25px;
            position: relative;
        }
        .form-group label {
            position: absolute;
            top: 15px;
            left: 20px;
            color: #aaa;
            transition: all 0.3s ease;
            pointer-events: none;
        }
        .form-group input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1em;
            outline: none;
            transition: all 0.3s ease;
            box-sizing: border-box;
            background-color: #f9f9f9;
        }
        .form-group input:focus,
        .form-group input:not(:placeholder-shown) {
            border-color: #498c82;
        }
        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown) + label {
            top: -10px;
            left: 10px;
            font-size: 0.8em;
            color: #498c82;
            background: #fff;
            padding: 0 5px;
        }
        .buttons-group {
            width: 100%;
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        .main-btn, .back-btn {
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            width: 100%;
        }
        .main-btn {
            background-color: #498c82;
            color: #fff;
        }
        .main-btn:hover {
            background-color: #498c82;
            transform: translateY(-2px);
        }
        .main-btn:active {
            transform: translateY(0);
        }
        .back-btn {
            background-color: #dc3545;
            color: #fff;
        }
        .back-btn:hover {
            background-color: #c82333;
            transform: translateY(-2px);
            color: #fff;
        }
        .back-btn:active {
            transform: translateY(0);
        }
        .info-section {
            flex: 1;
            background-color: #f8f9fa;
            border-left: 1px solid #eee;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 40px;
        }
        .info-section h3 {
            font-size: 1.8em;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
        }
        .info-section p {
            color: #777;
            line-height: 1.6;
            padding: 0 20px;
        }
        
        @media (max-width: 992px) {
            .container {
                flex-direction: column;
                width: 90%;
            }
            .form-section, .info-section {
                padding: 40px;
            }
            .info-section {
                border-left: none;
                border-top: 1px solid #eee;
            }
        }
        @media (max-width: 576px) {
            .form-section {
                padding: 30px;
            }
            .buttons-group {
                flex-direction: column;
            }
        }
    