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

body {
    background-color: #fcfcfc;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.wrapper {
    width: 960px;
    margin: 0 auto;
}

main {
    padding: 40px 0;
}

.login-container {
    background-color: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.062);
    display: flex;
    margin-bottom: 20px;
}

.login-left {
    flex: 1;
    position: relative;
}
.login-left img {
    height: 100%;
}


.landmarks {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.landmarks img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.login-right {
    flex: 1;
    padding: 20px 70px;
    padding-right: 20px;
}

.login-right h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.login-error {
    color: #a94442;
    font-size: 14px;
    margin-bottom: 12px;
    min-height: 0;
}

.login-error:empty {
    display: none;
}

.login-form {
    margin-bottom: 30px;
}



.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #a5a5a5;
    font-size: 13px;
}

.form-control {
    background-color: #fff;
    border: 1px solid #ccc;
    width: 220px;
    height: 28px;
    padding: 4px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 4px;
    color: #555;
    vertical-align: middle;
    transition: .4s all;
}

.form-control:focus {
    border-color: rgba(82, 168, 236, 0.8);
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

.form-actions {
    margin-top: 10px;
}

.btn-login {
    width: 120px;
    height: 38px;
    background-color: #da4f49;
    background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
    background-repeat: repeat-x;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 2px;
}

.btn-login:hover {
    background-color: #c01530;
}

.forgot-link {
    color: #476db5;
    font-size: 15px;
}

.forgot-link:hover {
    text-decoration: underline;
}

.register-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #cacaca;
}

.register-section span {
    color: #000;
    font-size: 14px;
}

.btn-register {
    width: 120px;
    height: 38px;
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    color: #333;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    vertical-align: middle;
    cursor: pointer;
    background-color: #f5f5f5;
    background-image: linear-gradient(to bottom, #fff, #e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn-register:hover {
    background-color: #e8e8e8;
}

.notice-box {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
}

.notice-box p {
    margin-bottom: 8px;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

.floating-service {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #219c97;
    color: white;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
}

.floating-service .service-icon {
    font-size: 24px;
    margin-bottom: 2px;
}

.floating-service .service-text {
    font-size: 14px;
}

