body {
            background-color: #476CDA;
            margin: 0;
            padding: 0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .container {
            padding: 30px;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .forms {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
            width: 50%;
            max-width: 500px;
  
        }
       
        .title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 35px;
            color: #476CDA;
            text-align: center;
        }

        .toplogo {
            max-width: 100%;
            height: 70px;
            display: block; 
            margin: 5px auto; 
            text-align: center;
        }

        .input-field {
            position: relative;
            margin-bottom: 20px;
        }

        .input-field input {
            width: 100%;
            padding: 10px 40px;
        }

        .input-field .icon {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
        }

        .showHidePw {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
        }

        .input-field .bi {
            font-size: 18px;
            color: #476CDA;
        }

        .modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1000;
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            text-align: center;
            width: 400px;
            max-width: 90%;
            height: auto;
            
        }

        .modal-icon {
            font-size: 50px;
            margin-bottom: 10px;
        }

        .modal-text {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .modal-button {
            padding: 10px 20px;
            background-color: #476CDA;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-bottom: 10px;
        }

        .modal-button:hover {
            background-color: #325FCE;
        }
        .modal-content{
            border: none;
        }
        
        /* Responsive Adjustments */
@media (max-width: 768px) {
    .forms {
        width: 90%; /* Adjust width for smaller screens */
        padding: 20px;
    }

    .title {
        font-size: 20px; /* Smaller title for smaller screens */
    }
}