body {
    font-family: 'Roboto', sans-serif;
    background-color: #e9edf2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.login-box {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 360px;
    text-align: center;
}
.login-box img {
    width: 100%;
    max-width: 250px;
    margin-bottom: 25px;
}
.terms-text {
    font-size: 12px;
    text-align: left;
}
.forgot-password {
    font-size: 12px;
    text-align: left;
    display: block;
    margin-top: 5px;
    color: #0073e6;
    text-decoration: none;
}
.forgot-password:hover {
    text-decoration: underline;
}
.form-group-spaced {
    margin-bottom: 20px;
}
.form-group-tight {
    margin-bottom: 12px;
}
iframe {
    border: none;
    width: 100%;
    height: 80vh; /* Increased height */
}
.modal-dialog-centered {
    max-width: 900px; /* Increased width */
}