/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Resetting default styling and setting font-family */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    width: 100%;
    min-height: 100vh;
    padding: 0 10px;
    display: flex;
    background: #CB2B20;
    justify-content: center;
    align-items: center;
}

.main-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.main-container>div {
    width: 100%;
    display: flex;
    justify-content: center;
}
.login-img img {
    max-width: 700px;
}

/* Login form styling */
.login_form {
    width: 100%;
    max-width: 435px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 41px 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.login-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    flex-basis: 0;
}
.login-popup {
    gap: 30px;
}
.logo-cellcom {
    max-width: 160px;
}
.ok {
    max-width: 100px;
}

.login_form h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #EE3023;
}
.titre h2,
.titre p {
    text-align: center;
    color: #EE3023;
}
.titre h2 {
    font-size: 35px;
    font-weight: 900;
}
.titre p {
    font-size: 18px;
    font-weight: 900;
}
.login_form table {
    /* table-layout: fixed;
    width: 100%; */
    font-size: 18px;
    font-weight: 500;
    color: #565656;
}
.login_form tr > td:first-child {
    text-align: right;
    padding-right: 15px;
}

form .form-inputs {
    width: 100%;
    padding: 0 20px;
}

form .input_box label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #EE3023;
}

/* Input field styling */
form .input_box input {
    width: 100%;
    height: 42px;
    border: 1px solid #EE3023;
    border-radius: 5px;
    outline: none;
    background: #F8F8FB;
    font-size: 14px;
    padding: 0px 20px;
    margin-bottom: 20px;
    transition: 0.2s ease;
}

form .input_box input:focus {
    border-color: #626cd6;
}

form .input_box .password_title {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

form .input_box {
    position: relative;
}

a {
    text-decoration: none;
    color: #626cd6;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Login button styling */
form button,
.login-validation {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 56px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: #EE3023;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    margin-bottom: 28px;
    transition: 0.3s ease;
}

form button:hover,
.login-validation:hover {
    text-decoration: none;
    background: #CB2B20;
}

.logos {
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 5px;
}
.logos img {
    max-width: 100%;
}

@media (max-width: 1024px) {
    .main-container {
        flex-direction: column-reverse;
        padding: 15px;
        gap: 30px;
    }
    .main-container > div > img {
        max-width: 100%;
    }
}