* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-box {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 400px;
    height: 420px;
    text-align: center;
}

.logo {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.logo h1 {
    font-size: 40px;
    color: #334466;
    font-weight: bold;
    margin-top: 10px;
}

form input {
    width: 100%;
    padding: 15px;
    margin-top: 25px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

form input[type='checkbox'] {
    width: auto;
    padding: 15px;
    margin: 15px 0;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

button {
    width: 100%;
    padding: 15px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background-color: #34495e;
}

img {
    width: 50px;
}

a {
    text-decoration: none;
    color: #666666;
}

.idText, .pwText {
    color: red;
    margin: 0px 5px;
    display: flex;
}