body, html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f4f4f4;
}

.login-container {
    display: flex;
    height: 100vh;
}

.login-image-side {
    flex: 1.2;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/login-tshirt.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
}

.image-header {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.img-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.misfits-text {
    width: 380px;
    height: auto;
    filter: brightness(0);
    opacity: 0.95;
}

.login-form-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    background-color: #ffffff;
}

h1 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 35px;
    letter-spacing: 2px;
    color: #000;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #000;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none !important;
    color: #000 !important;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 1px;
}

.google-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.google-btn img {
    width: 22px;
    margin-right: 15px;
}

.divider {
    height: 1.5px;
    background-color: #000;
    width: 85%;
    margin: 10px auto 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    border: 1.5px solid #000;
    border-radius: 8px;
    padding: 16px 22px;
    font-size: 15px;
    height: auto;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-control::placeholder {
    color: #777;
    font-weight: 400;
}

.form-control:focus {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-color: #333;
}

.btn-login-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.btn-login {
    background-color: #a0a0a0;
    color: #fff;
    border: 2px solid #000;
    padding: 12px 50px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 4px 4px 0px rgba(0,0,0,1);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-login:hover {
    background-color: #808080;
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0px rgba(0,0,0,1);
}

.btn-login:active {
    transform: translate(3px, 3px);
    box-shadow: 1px 1px 0px rgba(0,0,0,1);
}

.signup-link-text {
    margin-top: 40px;
    font-size: 17px;
    font-weight: 400;
}

.signup-link-text a {
    color: #0000ff;
    text-decoration: none;
    font-weight: 700;
}

.signup-link-text a:hover {
    text-decoration: underline;
}

.forgot-password {
    text-align: right;
    margin-top: -15px;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .login-image-side {
        display: none;
    }
    .login-form-side {
        padding: 5% 10%;
    }
    .login-container {
        height: auto;
        min-height: 100vh;
    }
}

.error-message {
    font-size: 0.85rem;
    color: red;
    margin-bottom: 10px;
    display: none;
}
