/*
 * Author: Hexinyan
 * Date Created: 2026-06-07 14:18:40
 * Modified By: Hexinyan
 * Last Modified: 2026-06-07 15:36:12
 * Description: login.css
 */

body {
    margin: 0;
    padding: 0;
}
.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
	background-color: hsl(0, 0%, 95%);
}
.login-container {
    width: 1200px;
    height: 650px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
    margin-top: 100px;
}
.login-container .title {
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2740a5;
    color: white;
    padding-left: 20px;
    box-sizing: border-box;
}
.login-container .welcome {
    font-size: 30px;
    font-weight: 700;
}
.login-container .system-name {
    font-size: 14px;
}
.login-container .content {
    width: 700px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    justify-content: center;
    padding: 150px;
    box-sizing: border-box;
}
.login-container input {
    height: 30px;
    border: none;
    border-bottom: 1px solid #bfbfbf;
    outline: none;
    font-size: 15px;
    color: #515151;
    padding-left: 5px;
}
.login-container button {
    border: none;
    height: 30px;
    background-color: #2740a5;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}
.footer {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}