* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #ffffff 0%, #fcfcfc 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }
        
.register-container {
            display: flex;
            max-width: 1000px;
            width: 100%;
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .left-side {
            flex: 1;
            background: linear-gradient(to bottom right, #fcbb16, #c3ac73);
            color: white;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .left-side::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(255,255,255,0.03)" points="0,100 100,0 100,100"/></svg>');
            background-size: cover;
        }
        .welcome-text {
            position: relative;
            z-index: 1;
        }

        .welcome-text h1 {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .welcome-text p {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .features {
            margin-top: 30px;
            position: relative;
            z-index: 1;
        }

        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .feature i {
            background: rgba(231, 168, 17, 0.2);
            color: #e7a811;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 18px;
        }

        .right-side {
            flex: 1;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .register-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .register-header h2 {
            color: #ff9d00;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .register-header p {
            color: #777;
        }

        .form-row {
            display: flex;
            gap: 10px;
            margin-bottom: 5px;
        }

        .form-row .input-group {
            flex: 1;
        }

        .input-group {
            position: relative;
            margin-bottom: 10px;
        }

        .input-group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
        }

        .input-group input, .input-group select {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .input-group input:focus, .input-group select:focus {
            border-color: #ff9500;
            box-shadow: 0 0 0 2px rgba(242, 163, 17, 0.2);
            outline: none;
        }

        .input-group select {
            appearance: none;
            cursor: pointer;
        }

        .input-group .fa-chevron-down {
            right: 15px;
            left: auto;
            pointer-events: none;
        }

        .terms {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            font-size: 14px;
        }

        .terms input {
            margin-top: 5px;
            margin-right: 10px;
        }

        .terms label {
            color: #555;
        }

        .terms a {
            color: #3e35b4;
            text-decoration: none;
        }

        .terms a:hover {
            text-decoration: underline;
        }

        .register-button {
            background: linear-gradient(to right, #ff9d00, #ff9d00);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(255, 189, 34, 0.3);
        }

        .register-button:hover {
            background: linear-gradient(to right, #f8e90b, #f8e90b);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(231, 168, 17, 0.4);
        }

        .login-link {
            text-align: center;
            font-size: 15px;
            color: #555;
        }

        .login-link a {
            color: #f49107;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .login-link a:hover {
            color: #fedd00;
            text-decoration: underline;
        }
/* Responsif */
        @media (max-width: 768px) {
            .register-container {
                flex-direction: column;
                max-width: 500px;
            } 
            .features {
           display: none;
            }
             .welcome-text h1 {
            font-size: 26px;
            }
            .register-header img{
                width: 300px;
            }
            .left-side {
                padding: 30px 25px;
            }
            
            .right-side {
                padding: 40px 30px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }

        /* LOOGIN */
        .login-container {
            display: flex;
            max-width: 1000px;
            width: 100%;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .left-side {
            flex: 1;
            background: linear-gradient(to bottom right, #ebebeb, #f4f4f4);
            color: white;
            padding: 40px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .left-side::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(255,255,255,0.03)" points="0,100 100,0 100,100"/></svg>');
            background-size: cover;
        }

        .welcome-text {
            position: relative;
            z-index: 1;
        }

        .welcome-text h1 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .welcome-text p {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .features {
            margin-top: 30px;
            position: relative;
            z-index: 1;
        }

        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .feature i {
            background: rgba(255, 255, 255, 0.526);
            color: #ffffff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 18px;
        }

        .right-side {
            flex: 1;
            padding: 50px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .login-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .login-header h2 {
            color: #fba300;
            font-size: 28px;
            margin-bottom: 10px;
        }

        .login-header p {
            color: #777;
        }

        .input-group {
            position: relative;
            margin-bottom: 10px;
        }

        .input-group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
        }

        .input-group input {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .input-group input:focus {
            border-color: #fba300;
            box-shadow: 0 0 0 2px rgba(180, 121, 53, 0.2);
            outline: none;
        }

        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .remember {
            display: flex;
            align-items: center;
        }

        .remember input {
            margin-right: 8px;
        }

        .forgot-password {
            color: #fba300;
            text-decoration: none;
            transition: color 0.3s;
        }

        .forgot-password:hover {
            color: #e7a811;
            text-decoration: underline;
        }

        .login-button {
            background: linear-gradient(to right, #fba300, #fba300);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(62, 53, 180, 0.3);
        }

        .login-button:hover {
            background: linear-gradient(to right, #fb7d00, #fb7d00);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(231, 168, 17, 0.4);
        }

        .divider {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .divider span {
            padding: 0 15px;
            color: #888;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #ddd;
        }

        .social-login {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            background: white;
            color: #555;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .google:hover {
            background: #db4437;
            color: white;
            border-color: #db4437;
        }

        .facebook:hover {
            background: #4267B2;
            color: white;
            border-color: #4267B2;
        }

        .twitter:hover {
            background: #1DA1F2;
            color: white;
            border-color: #1DA1F2;
        }

        .signup-link {
            text-align: center;
            font-size: 15px;
            color: #555;
        }

        .signup-link a {
            color: #ffa202;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .signup-link a:hover {
            color: #e77111;
            text-decoration: underline;
        }

        /* Responsif */
        @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
                max-width: 500px;
            }
             .features {
           display: none;
            }
             .welcome-text h1 {
            font-size: 26px;
            }
            .login-header h2{
                 font-size: 20px;
            }
            .login-header img{
                width: 200px;
            }
            .left-side {
                padding: 30px 25px;
            }
            
            .right-side {
                padding: 40px 30px;
            }
        }

        /* SweetAlert Custom Styles */
.swal-custom {
    border-radius: 15px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.swal-confirm {
    background-color: #2d6a4f !important;
    border-radius: 8px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.swal-confirm:hover {
    background-color: #1d4731 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
}

.swal-title {
    color: #2d6a4f !important;
    font-weight: 700 !important;
}