/* styles.css */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #0e239c, #2575fc);

}

.background {
/*    background: url('/static/img/home_banner_one.webp') no-repeat center center fixed;
background-size: cover;
*/
    background: url('/static/img/business-deal.svg') no-repeat left center fixed;        
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.login-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    margin-right: 50px;
}

.logo {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.login-form h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-weight: 500;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
    font-size: 20px;
}

.input-group input {
    width: 90%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 18px;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.input-group input:focus {
    border-color: #2575fc;
    box-shadow: 0 0 8px rgba(37, 117, 252, 0.4);
    outline: none;
}

.button-container {
    display: flex;
    justify-content: center;
}


button {
    width: 100%;
    max-width: 200px;
    margin-top: 50px;
    padding: 12px;
    background: #0e6efd;
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    font-weight: 700;
    
}


/*button:hover {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    transform: scale(1.05);
}*/

@media (max-width: 768px) {
    .background {
        background:url();
        justify-content: center;
        align-items: normal;
    }

    .login-form-container {
        margin-right: 10px;
        margin-left: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
        width: 90%;
        padding: 20px;
    }
}