* {
    font-family: 'Poppins', sans-serif;
}
body {
    margin: 0;
    display: flex;
    height: 100vh;
}

.left {
    width: 70vw;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    width: 100%;
    height: 42.5px;
}

.login-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .login-container h1 {
        font-weight: 300;
    }

    .login-container button {
        margin-top: 10px;
        padding: 10px 20px;
        background-color: transparent;
        color: #154787;
        border: 1 px solid #154787;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

        .login-container button img {
            margin-right: 10px;
        }

hr {
    height: 1px;
    width: 100%;
    background-color: lightgray;
    border: none;
}

.email-password {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

    .email-password input {
        width: 100%;
        margin: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        background-color: #cccccc6e;
        height: 38px;
        text-indent: 10px;
    }

.Microsoft-Button {
    background-color: #154787;
    border: 1px solid #154787;
    height: 40px;
    margin-bottom: 25px;
    margin-top: 25px;
    width: 250px;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 500;
    outline: none;
    padding: .3rem .5rem;
    transition: all .3s ease;
    font-size: 14px;
}

    .Microsoft-Button:hover {
        color: white;
        background-color: #154787;
    }


.email-password button {
    background-color: #00D1AD;
    border: none;
    height: 50px;
    margin-bottom: 25px;
    margin-top: 25px;
    width: 250px;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    outline: none;
    padding: .3rem .5rem;
    transition: all .3s ease;
    font-size: 14px;
}

    .email-password button:disabled {
        cursor: default;
        opacity: .6;
    }

.footer {
    bottom: 20px;
    text-align: center;
    width: 100%;
    color: #333;
    font-size: 14px;
}

/*.right {
    width: 30vw;
    background-color: #1E90FF;
    background-image: url('../img/blue_bg_gradient.8a58bbe9ad910c05e801.png');
    background-size: cover;
    height: 100vh;
    padding: 0 1rem;
}*/
.right {
    width: 30vw;
    height: 100vh;
    padding: 0 1rem;
    /* Gradient Background */
    background: linear-gradient(to bottom right, #00D1AD, #00463a);
    /* Overlay Pattern */
    position: relative;
}

    .right::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Darker Pattern */
        background-image: radial-gradient(rgba(255, 255, 255, 0.3) 15%, transparent 15%);
        background-size: 20px 20px; /* Adjust for density */

        opacity: 0.6; /* More visibility */
    }




.trouble_login {
    color: #333;
    font-size: 14px;
}
