/*
html, body {overflow-x:hidden; }
body {font-family: 'Poppins', sans-serif; font-weight: normal; color: #333; font-size: 14px; line-height: 1.6; background-size:cover; height:100vh; background-position:center; background-repeat:no-repeat; position:relative; display:block;}
body:before {background-color: rgba(0,0,0,0.8); position:fixed; left:0; right:0; top:0; bottom:0; content:"";}
p {font-weight: 300;}
img {max-width:100%; height:auto;}
a {color:#000; -webkit-transition:all linear 0.2s 0s; transition:all linear 0.2s 0s;}
a:hover, a:focus {text-decoration:none; outline:0; color:#333;}
h1, h2, h3, h4, h5, h6 {font-family: 'Poppins', sans-serif;}
.container {max-width: 1320px;}


.splash_wrapper {position:absolute; left:50%; top:50%; -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%); padding:50px; -webkit-box-shadow:rgba(0,0,0,0.2) 0 0 10px; box-shadow:rgba(0,0,0,0.2) 0 0 10px; background-color:rgba(255,255,255,.95); width: 80%; max-width:600px;}
.splash_wrapper .logo {display:block; text-align: center;}
.splash_wrapper .logo img{max-width:200px; }
ul.contact_info_list{list-style:none;padding:0;margin:0;margin-bottom:50px; margin-top:50px;}
ul.contact_info_list li{position:relative; padding:10px 0; padding-left:30px;color:#333; font-size:18px;}
ul.contact_info_list li a{display:block;color:#333;font-weight:400}
ul.contact_info_list li i{ position:absolute;left:0;top:20px; color: #8c076b;}
ul.contact_info_list li a:hover{color:#000;text-decoration:none}

.splash_wrapper .btn {padding:7px 25px;}
.btn-block{width: 100% !important;}
.aeroplane {position:absolute; right:-170px; top:-90px; width:360px; }

.disclaimer {color:rgba(255,255,255,0.8); font-size:12px; text-align: center; margin-top:10px; position:absolute; left:50%; -webkit-transform: translateX(-50%); transform: translateX(-50%);
bottom:15px;width:100%; z-index:999;}
.disclaimer p {margin-bottom:1px;}



@media (max-width:767px) {
    .splash_wrapper {position: relative; left: inherit; top: inherit;-webkit-transform:none;transform: none; padding:30px; margin:10px auto 25px; }
    .splash_wrapper .logo {margin-bottom: 0; }
    ul.contact_info_list {margin-bottom:10px; margin-top:10px; }
    .disclaimer {position:relative; display:block; left: inherit; bottom:inherit; -webkit-transform:none; transform: none; margin:10px auto; width: 80%;}
    .aeroplane {display: none;}
}
@media (max-width:375px) {
    .splash_wrapper {padding:30px 10px; }
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Container - same as your original */
.container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 400px;
    width: 90%;
    text-align: left !important;
    position: relative;
    z-index: 2;
}

/* Logo and branding - same style as original */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: #2196F3;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

/* Contact information - same as original */
.contact-info {
    margin-bottom: 30px;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    color: #666;
    font-size: 14px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: #E91E63;
}

/* Buttons - same as original */
.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.btn {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center !important;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #E91E63;
    color: white;
}

.btn-primary:hover {
    background: #C2185B;
}

.btn-secondary {
    background: transparent;
    color: #E91E63;
    border: 1px solid #E91E63;
}

.btn-secondary:hover {
    background: #E91E63;
    color: white;
}

/* Cooperative section - same as original */
.cooperative {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #666;
    font-size: 13px;
}

.cooperative-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cooperative-icon {
    width: 20px;
    height: 20px;
    background: #2196F3;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.cooperative-text {
    font-weight: 500;
    color: #2196F3;
}

/* Footer - same as original */
.footer {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.9)!important;
    font-size: 11px !important;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    border-radius: 4px;
    max-width: 90%;
}
.footer p {
    margin: 0px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
        margin: 20px;
    }

    .logo-text {
        font-size: 20px;
    }

    .button-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .footer {
        position: relative !important;
        margin-top: 30px !important;
        transform: none !important;
        left: auto !important;
        bottom: auto !important;
    }
}