body {
    background: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 100px auto 0 auto;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-header {
    width: 400px;
    margin: 0 0 0 0;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    justify-content: flex-start;
    position: relative;
    left: -225px;
}

.login-header .icon {
    font-size: 1.3em;
    margin-right: 10px;
}

.login-header .title {
    font-size: 1.1em;
}

hr {
    border: none;
    border-top: 3px solid #000;
    margin-bottom: 30px;
    width: 100%;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.login-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

.login-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.login-form {
    display: flex;
    flex-direction: column;
    width: 400px;
    gap: 18px;
}

.login-form label {
    font-weight: 500;
    margin-bottom: 4px;
}

.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="text"] {
    padding: 12px;
    border: 1.5px solid #aaa;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    margin-bottom: 8px;
    transition: border 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus,
.login-form input[type="text"]:focus {
    border: 1.5px solid #e53935;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-wrapper input[type="password"] {
    width: 100%;
    box-sizing: border-box;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.1em;
    color: #888;
}

.login-btn {
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(229,57,53,0.08);
    transition: background 0.2s;
}

.login-btn:hover {
    background: #c62828;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #444;
    margin: 10px 0 10px 0;
}

.divider span {
    background: #fff;
    padding: 0 8px;
    font-size: 1rem;
}

.divider:before,
.divider:after {
    content: '';
    flex: 1;
    border-bottom: 2px solid #bbb;
    margin: 0 8px;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 10px;
    transition: border 0.2s;
}

.google-btn img {
    width: 28px;
    height: 28px;
    margin-right: 12px;
}

.google-btn:hover {
    border: 1.5px solid #e53935;
}

.forgot-link {
    color: #000;
    text-align: center;
    text-decoration: underline;
    font-size: 1.05rem;
    margin-top: 10px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .container {
        max-width: 100vw;
        padding: 0 10px;
    }
    .login-header {
        left: 0;
        width: 100%;
    }
    .login-content {
        flex-direction: column;
        align-items: center;
    }
    .login-image img {
        width: 320px;
        height: 220px;
    }
    .login-form {
        width: 100%;
        max-width: 320px;
    }
} 