/* Google Fonts Link */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
    font-family: "Montserrat", sans-serif;
}

:root {
    --blue: #3498db;
    --dark-blue: #2980b9;
    --red: #6a3ce733;
    --dark-red: #6a3ce738;
    --black: #333;
    --white: #083b5e;
    --light-bg: #eee;
    --box-shadow: 0 5px 10px rgba(0,0,0,.1);
}


.message {
    margin: 0; 
    width: calc(100% - 40px); 
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    background-color: var(--red);
    color: var(--white);
    font-size: 20px;
}

form h3 {
    font-size: 20px;
    text-align: center;
}

.btn-block {
    display: block;
    width: 100%;
}

.login_form .login_option {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.login_form .login_option .option {
    width: 100%;
}

.login_form .login_option .option a {
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #f8f8fb;
    border: 1px solid #dadaf2;
    border-radius: 5px;
    text-decoration: none;
    color: #171645;
    font-weight: 500;
    transition: 0.2s ease;
}

.login_form .login_option .option a:hover {
    background: #ededf5;
    border-color: #626cd6;
}

.login_form .login_option .option a img {
    max-width: 25px;
}

.login_form p {
    text-align: center;
    font-weight: 500;
}

.login_form .separator {
    position: relative;
    margin: 0; 
}

.login_form .separator span {
    background: #fff;
    z-index: 1;
    padding: 0 10px;
    position: relative;
}

.login_form .separator::after {
    content: "";
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    height: 1px;
    background: #c2c2c2;
    display: block;
}

form .input_box label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

form .input_box input {
    height: 57px;
    border: 1px solid #dadaf2;
    border-radius: 5px;
    outline: none;
    background: #f8f8fb;
    font-size: 17px;
    padding: 0 20px;
    margin-bottom: 20px;
    transition: 0.2s ease;
}

form .input_box .input-file {
    padding-top: 10px;
}

form .input_box input:focus,
form .input_box .input-file:focus {
    border-color: rgba(68,95,105);
}

form .input_box .password_title {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

form .input_box {
    position: relative;
}

a {
    text-decoration: none;
    color: rgba(68,95,105);
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

form button {
    width: 100%;
    height: 56px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: rgb(45, 63, 70);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 20px; 
    transition: 0.3s ease;
}

form button:hover {
    background: rgba(68,95,105);
}


@media (max-width: 576px) {

    .message {
        width: calc(100% - 40px); 
        font-size: 16px;
    }

    form .input_box input {
        height: 50px;
        font-size: 15px;
        padding: 0 15px;
        margin-bottom: 20px; 
    }
}
