
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', sans-serif;
    }

    body {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
	.fond-image{
		 display: flex;
        justify-content: center;
        align-items: center;
		width:100%;
		height:100%;
		background-color: rgba(206, 212, 218, 0.5); 
        /*background-color:#ced4da;*/
	}
	


    .login-container {
        background: #ffffff;
        width: 100%;
        max-width: 420px;
        padding: 40px 35px;
        border-radius: 20px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);

    }

    .logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
    }

    .logos img {

        object-fit: contain;
    }

    h1 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #080246;
		font-family:Inter;
    }

    .welcome-text {
        font-size: 14px;
        color: #080246;
        margin-bottom: 30px;
		font-family:Inter;
    }

    .form-group {
        text-align: left;
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        font-size: 13px;
        margin-bottom: 6px;
        color: #4b5563;
    }

    .form-group input {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        border: 1px solid #d1d5db;
        font-size: 14px;
        transition: 0.3s ease;
        background-color: #f9fafb;
    }

    .form-group input:focus {
        outline: none;
        border-color: #2e9dd7;

       box-shadow: 0 0 0 3px rgba(46, 157, 215, 0.2);
        background-color: #ffffff;
    }

    .forgot-password {
        text-align: right;
        margin-bottom: 25px;
    }

    .forgot-password a {
        font-size: 13px;
        color: #2e9dd7; 
        text-decoration: none;
        font-weight: 500;
    }

    .forgot-password a:hover {
        text-decoration: underline;
    }

    .btn-login {
        width: 100%;
        padding: 12px;
        border: none;
        border-radius: 10px;

        background: #1f77ad;
        color: white;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .btn-login:hover {
        background: #333e5a;
    }

    .btn-login:active {
        background: #333e5a;
    }

    @media (max-width: 480px) {
        .login-container {
            margin: 20px;
            padding: 30px 20px;
        }
    }
    