:root {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #1a202c;
}

h1 {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
}

body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f0f2f5;
}

.container {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: 1fr;
    width: 80%;
    max-width: 120ch;
    min-height: 75vh;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: white;
}


#Login-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(135deg, #4facfe, #0575e6);
    padding: 2rem;
    color: white;
    text-align: left;
}


#Login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: #fff;
}

#Login-form form {
    max-width: 22rem;
    width: 100%;
}

#Login-form fieldset {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    border: none;
    width: 100%;
}

#Login-form label {
    margin-bottom: 0.5rem;
}

#Login-form input {
    width: 100%;
    font-size: 1rem;
    padding: 0.5rem;
}

#Login-form .submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

#Login-form button {
    padding: 1rem 2rem;
    background-color: #667eea;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    margin-left: 1rem;
}

#Login-form button:hover {
    background-color: #5a67d8;
}

#Login-form p {
    font-size: 1rem;
    margin: 0;
    margin-left: 1rem;
}

#Login-form a {
    color: #667eea;
    text-decoration: none;
}

#Login-form a:hover {
    text-decoration: underline;
}