
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background: #f5f5f5;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #2E2E2E;
        }
        
        #wrapper{
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .login-container {
            width: 100%;
            max-width: 500px;
            padding: 60px 50px 30px 50px;
            background: white;
            box-shadow: 0px 0px 15px #0000001F;
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 20px;
        }
        
        .logo {
            text-align: center;
            /* margin-bottom: 30px; */
            width: 200px;
        }
        
        .logo img {
            width: 100%;
        }
        
        .form-header {
            text-align: center;
            /* margin-bottom: 30px; */
        }
        
        .form-header h2 {
            font-family: 'Archivo', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #051b3c;
            /* margin-bottom: 10px; */
        }
        form{
            width:  100%;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 8px;
            color: #2E2E2E;
        }
        
        .input-group {
            position: relative;
        }
        
        .form-control {
            width: 100%;
            color: #000000;
            padding: 12px 15px 12px 15px;
            border: 1px solid #7070704D;
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s;
        }
        .form-control::placeholder{
            color: #000000;
            opacity: 0.2;
        }
        
        .form-control:focus {
            border-color: #7070704D;
            outline: none;
            box-shadow: 0 0 0 2px rgba(5, 27, 60, 0.1);
        }
        
        .input-group i:not(.toggle-icon) {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
            font-size: 16px;
        }
        
        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #777;
            font-size: 16px;
            padding: 0;
            width: auto;
            height: auto;
        }
        .form-check-label{
            margin-left:10px !important;
        }
        .btn {
            width: fit-content;
            font-family: 'Roboto';
            font-weight: bold;
            padding: 15px 27px;
            background: #F09B36;
            border: 1px solid #7070704D;
            border-radius: 10px;
            color: #000000;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .btn:hover {
            background: #0a2a5a;
            color: white;
            border: none;
        }
        
        .footer {
            text-align: right;
            padding: 25px 0 0 0;
            border-top: 0.5px solid #707070;
            width: 100%;
        }


        @media (max-width: 767px) {

            .login-container {
                width: 80%;
                max-width: 500px;
                /* padding: 30px 25px 15px 25px; */
            }
        }

        @media (max-width: 500px) {
            .logo {
                width: 100%;
                max-width: 200px;
            }
            .login-container {
                padding: 40px;
            }
            .form-control {
                font-size: 14px;
            }
            .btn {
                font-size: 14px;
            }
        }

        @media (max-width: 400px) {
            .login-container {
                padding: 20px;
            }
        }
