* {
    box-sizing: border-box;
}

body.login-page {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at top, #2b2b2b 0%, #141414 58%, #0d0d0d 100%);
    font-family: Arial, sans-serif;
    color: #ffffff;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 340px;
    background: #ffffff;
    border-radius: 26px;
    padding: 24px 22px 26px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.login-logo-image {
    width: 132px;
    max-width: 100%;
    height: auto;
    display: block;
}

.title {
    font-size: 34px;
    font-weight: 700;
    color: #141414;
    margin: 0 0 20px;
    letter-spacing: -0.04em;
}

.field {
    margin-bottom: 14px;
    text-align: left;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6a00;
    font-size: 15px;
}

.input {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    background: #fafafa;
    padding: 13px 16px 13px 42px;
    font-size: 14px;
    outline: none;
    color: #171717;
}

.input:focus {
    border-color: #ff6a00;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.error {
    text-align: left;
    font-size: 12px;
    color: #b42318;
    margin-top: 6px;
}

.status {
    font-size: 13px;
    color: #1f7a45;
    background: #e9f8ef;
    border-radius: 14px;
    padding: 10px 12px;
    margin-bottom: 14px;
}

.submit {
    width: 100%;
    border: none;
    border-radius: 999px;
    background: #ff6a00;
    color: #fff;
    padding: 13px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 6px;
}

.submit:hover {
    background: #e75f00;
}
