body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
}

.container {
    display: flex;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
}

.welcome-box {
    background-color: #2d4857;
    color: white;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-box h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.welcome-box p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 150%;
}

.welcome-box a {
    color: white;
    text-decoration: underline;
}

.logo {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.logo-text {
    background-color: white;
    color: #2d4857;
    padding: 5px 10px;
    font-weight: bold;
}

.login-box {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
}

input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #2d4857;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #1b2f3b;
}

.forgot-password {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.register {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    color: red;
}

.register-link {
    font-weight: bold;
    text-decoration: underline;
}
