html, body {
    height: 100%;
    margin: 0;
    background: #f8f8f8;
    font-family: -apple-system, "Segoe UI", "Malgun Gothic", sans-serif;
}

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

.login-card {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: 8px;
    padding: 40px 32px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.login-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #21212d;
    margin-bottom: 28px;
}

.field {
    margin-bottom: 14px;
}

.field input {
    width: 100%;
    height: 45px;
    box-sizing: border-box;
    padding: 0 14px;
    font-size: 14px;
    background: #f8f8f8;
    border: 1px solid #ededed;
    border-radius: 5px;
}

.field input:focus {
    outline: none;
    border-color: #ff5f00;
}

.btn-login {
    width: 100%;
    height: 45px;
    margin-top: 8px;
    background: #ff5f00;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease-out;
}

.btn-login:hover {
    background: #272727;
}
