* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #ffffff;
    color: #111936;
}

.login-page {
    width: 460px;
    margin: 90px auto 0 auto;
    text-align: center;
}

.logo img {
    width: 300px;
    margin-bottom: 140px;
}

.login-form input {
    width: 100%;
    height: 48px;
    border: none;
    background: #f3f3f5;
    padding: 0 15px;
    font-size: 15px;
    color: #111936;
    outline: none;
    margin-bottom: 12px;
}

.password-box {
    position: relative;
}

.password-box input {
    padding-right: 50px;
}

.password-box span {
    position: absolute;
    right: 16px;
    top: 13px;
    cursor: pointer;
    color: #777;
    font-size: 18px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    text-align: left;
}

.remember input {
    width: 16px;
    height: 16px;
    margin: 0;
}

button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 5px;
    background: #2794a8;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 12px;
}

button:hover {
    background: #1f8496;
}

.forgot {
    display: block;
    color: #111936;
    text-decoration: none;
    font-size: 15px;
}

.register-box {
    margin-top: 160px;
}

.register-box p {
    margin-bottom: 12px;
    font-size: 16px;
}

.register-box a {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 48px;
    border: 1px solid #2293aa;
    color: #111936;
    text-decoration: none;
    border-radius: 4px;
}

.register-box a:hover {
    background: #f3fbfd;
}

.error {
    background: #ffe5e5;
    color: #b00020;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
}
.logo a{
    display:inline-block;
}

.logo img{
    cursor:pointer;
}
