.main-container {
    display: flex;
    flex-direction: column-reverse;
    min-height: 100vh;
}

@media (min-width: 768px) {
    .main-container {
        flex-direction: row;
    }
}

.left-container, .right-container {
    width: 100%;
    min-height: 100vh;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .left-container, .right-container {
        width: 50%;
    }
}

.left-container {
    background: linear-gradient(135deg, #00a896, #05668d);
    color: white;
    text-align: center;
}

.right-container {
    background-color: #fcfcfc;
}

.content {
    max-width: 480px;
    width: 100%;
    background: #ffffff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border: 1px solid #ececec;
}

.brand-content {
    background: none;
    box-shadow: none;
    padding: 0;
    color: white;
    border: none;
    text-align: left;
}

.brand-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.brand-content p {
    font-size: 1rem;
    line-height: 1.5;
}

.login-content h2 {
    margin-bottom: 10px;
    color: #333;
}

.login-content .subtext {
    font-size: 0.9rem;
    margin-bottom: 30px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}


.input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f1f3f5;
}

.input-wrapper input {
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 14px;
    background: transparent;
    outline: none;
}

.icon-container {
    padding: 0 12px;
    font-size: 1.2rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #e9ecef; */
    border-right: 1px solid #ced4da;
}

.btn-login {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    background: linear-gradient(210deg, #00a896, #05668d);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-login:hover {
    background: linear-gradient(210deg, #02c39a, #028090);
    filter: brightness(1);
}

.subtext-link{
    text-decoration: none;
    color: #1782da;
}
.subtext-link:hover{
    color: #0d65ad;
}
.error-text{
    font-size: 0.9rem;
    color: rgb(235, 11, 67);
    margin-bottom: 10px;
}
.brand-content img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .brand-content img {
        width: 500px;
    }
}
