@import url('bootstrap.css');

.login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 15px;
}
.login-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.left-space {
    min-height: 100vh;
    background-color: #009688;
}
.password-toggle {
    position: relative;
}
.password-toggle .toggle-btn {
    position: absolute;
    right: 10px;
    top: 70%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    display: flex;
    align-items: center;
    height: 100%;
}
.password-toggle .form-control {
    padding-right: 40px;
}
@media (max-width: 768px) {
    .login-container {
        height: auto;
        padding: 50px 15px;
    }
}