 /** {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

body {
    height: 100vh;
    background: linear-gradient(rgba(0, 50, 0, 0.6), rgba(0, 50, 0, 0.6)), url('/WebsiteContent/images/back3.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}*/
.MainLogin {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 100px;
}
.login-box {
    background: rgba(255, 255, 255, 255);
    width: 426px;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.2);
    text-align: center;
}

    .login-box h2 {
        font-size: 26px;
        color: #314558;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .login-box p {
        font-size: 14px;
        color: #555;
        margin-bottom: 25px;
    }

    .input-group {
        text-align: left;
        margin-bottom: 12px;
        width:100%;
    }

    .input-group label {
        display: block;
        font-weight: 600;
        color: #333;
        margin-bottom: 6px;
    }

    .input-group input {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #ccc;
        border-radius: 8px;
        outline: none;
        transition: 0.3s;
        font-size: 15px;
    }

    .input-group input:focus {
        border-color: #4caf50;
        box-shadow: 0 0 5px rgba(76,175,80,0.4);
    }

.btn {
    width: 100%;
    padding: 12px;
    background-color: #1c3753;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

    .btn:hover, .btn:focus, .btn.focus {
        background-color: #1c3753;
        color: #fff;
    }

    .footer-text {
        margin-top: 20px;
        font-size: 14px;
        color: #444;
    }

    .footer-text a {
        color: #314558;
        text-decoration: none;
        font-weight: 600;
    }

    .footer-text a:hover {
        text-decoration: underline;
    }

    .circle-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding:10px;
    
}

.preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #ffffff80;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader .cssload-speeding-wheel {
    position: absolute;
    top: calc(50% - 3.5px);
    left: calc(50% - 3.5px)
}
.regname {
    display: flex;
    align-items: center;
}
.Mainregname {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    align-items: first baseline;
}

@media (max-width: 420px) {
    .login-box {
        width: 90%;
        padding: 30px 20px;
    }
    .Mainregname {
        flex-wrap: wrap;
        gap: 0px;
    }
        .Mainregname div {
            width: 100%;
        }
   
}
