body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 0;
    font-family: 'Calibri', sans-serif;
    font-size:18px;
}

.container {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    justify-content: center;
}

.login-form {
    max-width: 300px;
    margin: auto;
}

h2 {
    text-align: center;
    color: #333;
}

label {
    display: block;
    margin-top: 10px;
    color: #555;
}

input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.sign-button {
    padding: 8px 16px;
    cursor: pointer;
    background-color: #4206b3fa;
    color: white;
    font-size: 14px;
    transition: color 0.3s, background-color 0.3s;
    position: relative;
    text-decoration: none;
    border-radius: 4px;
    margin-top:10px;

}

.sign-button:hover {
    color: #FFFFFF;
    background-color: #4A148C;
}

.logo {
    width: 350px;
    height: 150px;
    margin-bottom: 20px;
    margin-top: 0px;            
    margin-left:0px;
}

.login-title{
    font-size: 24px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
    justify-content: center; 
    align-items: center;
}

.modal-content {
    margin-top: -100px;
    background-color: #fefefe;
    margin: 10% auto;
    padding: 10px;
    border: 1px solid #888;
    width:200px;
    font-size: 20px;
    border-radius: 10px; 
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.google-signin{
    margin-left: 20px;
    margin-top:50px;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    body {
        font-size: 16px; 
    }
    .container {
        padding: 20px; 
        flex-direction: column; 
    }
    .logo {
        width: 50%; 
        height: auto; 
        margin-top: 0; 
    }
    .login-form {
        width: 100%; 
    }
    .google-signin{
        margin-left: 35px;
    }
}