 * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(90deg, #294089 0%, #F57203 100%);
        }

        .backgroundCard {
            background-color: #ffffff;
            width: 100%;
            max-width: 800px;
            padding: 40px 45px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        .logo {
            font-weight: 700;
            margin-bottom: 40px;
        }

        .logo span{
            margin-left: -px;
        }

        .logo a{
            text-decoration: none;
        }

        .inputGroup {
            text-align: left;
            margin-bottom: 30px;
        }

        .inputGroup label {
            display: block;
            font-size: 24px;
            color: #222222;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .inputGroup input {
            width: 100%;
            border: none;
            border-bottom: 2px solid #757575;
            padding: 8px 0;
            font-size: 20px;
            color: #333;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .inputGroup input::placeholder {
            color: #b0bec5;
        }

        .inputGroup input:focus {
            border-bottom-color: #e66c00;
        }

        .signInbtn, .signupbtn {
            width: 100%;
            max-width: 180px;
            background-color: #e66c00;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 20px;
            font-weight: 600;
            border-radius: 20px;
            margin-top: 5px;
            margin-bottom: 15px;
            cursor: pointer;
        }

        .signInbtn:hover, .signupbtn:hover {
            background-color: #cc6000;
        }

        .signInbtn:active, .signupbtn:active {
            transform: scale(0.98);
        }

        /*Just for the SignIn page from here*/

        .forgotPassword {
            display: block;
            color: #333333;
            text-decoration: none;
            font-size: 16px;
            margin-bottom: 60px;
        }

        .forgotPassword:hover {
            text-decoration: underline;
        }

        .signupSection {
            font-size: 18px;
            color: #333333;
        }

        .signupSection p {
            margin-bottom: 8px;
        }

        .signup {
            display: inline-block;
            color: #000000;
            text-decoration: none;
            font-weight: bold;
            font-size: 20px;
        }

        .signup:hover {
            text-decoration: underline;
        }

        .rememberMe, .terms {
            margin-bottom: 20px;
            margin-right: 5px;
            transform: scale(1.9);
            cursor: pointer;
        }

        .remember, .termsAndConditions label{
            color: #666;
            font-size: 1.2rem;
        
        }

        @media (max-width: 768px) {
            .backgroundCard {
            max-width: 350px;
        }

        .remember, .termsAndConditions label{
            color: #666;
            font-size: 0.9rem;
        }

        .remember{
            margin-top: 30px;
        }
        }