﻿#loginSection {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 2em;
}
.field-icon {
    float: right;
    margin-top: -28px;
    position: relative;
    z-index: 2;
}
.fa-eye:before, .fa-eye-slash:before {
    margin-left: -25px;
    color: #ababab;
    font-size: 16px;
}
.container {
    text-align: inherit !important;
}

#loginSection p {
    text-align: center !important;
    margin-top: 10px;
    margin-bottom: 10px;
   
}

#loginSectionCont h3 {
    margin-top: 60px !important;
    margin-bottom: 20px;
}

.form-horizontal {
    margin-top: 0.5em !important;
}

    .form-horizontal .control-label {
        text-align: initial;
        margin-bottom: 5px;
        font-size: 16px;
    }

.forgotPassword {
    text-decoration: none;
    color: #008099;
    line-height: 10px;
    letter-spacing: 0.5px;
    text-align: left;
}

.chashback {
    text-decoration: none;
    color: #000;
    line-height: 10px;
    letter-spacing: 0.5px;
    text-align: left;
}

 

.form-control {
    border-radius: 0px !important;
    height: 40px;
}

input.btn.btn-primary.btn-block.btn-lg {
    border-radius: 15px !important;
    background: #005eff;
    border-color: #e7e3e5;
}

    input.btn.btn-primary.btn-block.btn-lg:hover {
        color: #ddd !important;
    }

a.forgotPassword:hover, a.forgotPassword:focus, a.forgotPassword:active {
    text-decoration: none;
    color: #1b19af;
}

a.chashback:hover, a.chashback:focus, a.chashback:active {
    text-decoration: none;
    color: #1b19af;
}





@media (max-width: 769px) {
    #loginSection {
        margin-top: 4em !important;
    }
}

@media (max-width: 500px) {
    #loginSection {
        margin-top: 2em !important;
    }
}

@media (max-width: 400px) {
    #loginSection {
        margin-top: 1em;
        margin-bottom: 1em;
		padding: unset;
    }
}

















* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: white;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

    header .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0069ff;
    }

nav.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

    nav.menu span {
        font-weight: 500;
    }

header .phone {
    display: flex;
    align-items: center;
}

    header .phone i {
        margin-right: 10px;
        color: #000;
    }

.btn-login {
    background-color: #0069ff;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

    .btn-login:hover, .btn-login:focus {
        text-decoration: none !important;
        color: white !important;
        background-color: #1b19af;
    }

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4f4f4f;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 50px;
    text-align: center;
    text-decoration: none;
    clip-path: circle(50% at 50% 50%);
    height: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
}

    .whatsapp-btn:hover, .whatsapp-btn:focus, .whatsapp-btn:active {
        color: white;
        text-decoration: none;
    }



/* Mobile Menu */
.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #0069ff;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: white;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    z-index: 999;
}

    .mobile-menu span, .mobile-menu .btn-login {
        display: block;
        margin-bottom: 15px;
    }

/* Responsive design */
@media screen and (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav.menu {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .mobile-menu span, .mobile-menu .phone, .mobile-menu .btn-login {
        font-size: 1.2rem;
    }

    .btn-login {
        padding: 10px 20px;
    }
}