:root {
    --primary-color: #0f172a;
    --secondary-color: #4f46e5;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif;
}

body {
    background-color: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.header {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.header h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);

    font-style: bold;
}

.login-container {
    display: flex;
    width: 900px;
    height: 500px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.login-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 100%;
    max-width: 360px;
}

.brand {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

.login-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: none;
}

input {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    background-color: #f8fafc;
}

input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.forgot-password {
    display: block;
    text-align: center;
    color: var(--secondary-color);
    font-size: 17px;
    color: #333333;
    margin-bottom: 16px;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #183815;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-btn:hover {
    background-color: #10331d;
}

.login-image {
    flex: 1;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    padding: 40px;
    text-align: center;
}

.login-image h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.login-image p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 400px;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        height: auto;
        width: 90%;
    }

    .login-image {
        padding: 30px;
    }
}
