body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
}
.container {
    display: flex;
    width: 98%;
    max-width: 1440px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.left {
    flex: 1;
    padding: 40px;
}
.right {
    flex: 1;
    background: url('Images/house-img.avif') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 40px;
    margin-right: 10px;
}
.logo h1 {
    font-size: 24px;
    font-weight: 700;
}
#mortgage {
    font-size: 20px;
    font-weight: 500;
}
.enroll a {
    color: #6c9e31;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #6c9e31;
    padding: 10px 20px;
    border-radius: 20px;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.head {
    text-align: center;
}
.main {
    margin-left: 150px
}
.welcome {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}
.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    font-weight: 500;
}
.form-group input {
    width: 70%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#online-id {
    margin-block: 15px;
}
#password {
    margin-block: 15px;
}
.form-group #show-password {
    position: absolute;
    right: 170px;
    top: 45px;
    cursor: pointer;
    color: #6c9e31;
    display: none;
}
.form-group #hide-password {
    position: absolute;
    right: 170px;
    top: 45px;
    cursor: pointer;
    color: #6c9e31;
    display: none;
}
.remember {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.remember input {
    margin-right: 10px;
}
.login-btn {
    width: 70%;
    padding: 15px;
    background-color: #6c9e31;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}
.links {
    margin-left: 40px;
    margin-top: 20px;
}
.links a {
    color: #6c9e31;
    text-decoration: none;
    margin: 0 10px;
}
.footer {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #999;
}

