.odlogin-wrap {
    width: 100%;
    max-width: 420px;
    margin: 32px auto;
    padding: 0 16px;
    box-sizing: border-box;
    font-family: inherit;
}

.odlogin-card {
    width: 100%;
    padding: 28px;
    border: 1px solid rgba(20, 31, 43, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(20, 31, 43, 0.12);
    box-sizing: border-box;
    color: #17202a;
}

.odlogin-card-logged {
    text-align: center;
}

.odlogin-title {
    margin: 0 0 8px;
    padding: 0;
    color: #17202a;
    font-family: inherit;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

.odlogin-subtitle {
    margin: 0 0 24px;
    padding: 0;
    color: #5d6d7e;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0;
}

.odlogin-field {
    margin: 0 0 16px;
}

.odlogin-field label {
    display: block;
    margin: 0 0 7px;
    color: #263545;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0;
}

.odlogin-field input {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 11px 14px;
    border: 1px solid #cfd8e3;
    border-radius: 10px;
    background: #ffffff;
    color: #17202a;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.4;
    box-sizing: border-box;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.odlogin-field input:focus {
    border-color: #1f7a8c;
    box-shadow: 0 0 0 4px rgba(31, 122, 140, 0.14);
    outline: none;
}

.odlogin-remember {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 4px 0 20px;
    color: #405163;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.odlogin-remember input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #1f7a8c;
    flex: 0 0 auto;
}

.odlogin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    border: 0;
    border-radius: 10px;
    background: #1f7a8c;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.odlogin-button:hover,
.odlogin-button:focus {
    background: #176575;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(31, 122, 140, 0.24);
    outline: none;
    transform: translateY(-1px);
}

.odlogin-button:active {
    transform: translateY(0);
}

.odlogin-link-button {
    margin-top: 16px;
}

.odlogin-error,
.odlogin-success {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0;
}

.odlogin-error {
    border: 1px solid #f2b8b5;
    background: #fff3f2;
    color: #9f2d24;
}

.odlogin-success {
    border: 1px solid #b8dfc8;
    background: #f0fbf4;
    color: #1f6b3a;
}

.odlogin-logout {
    width: 100%;
    max-width: 220px;
    margin: 24px auto;
    font-family: inherit;
}

@media (max-width: 480px) {
    .odlogin-wrap {
        margin: 22px auto;
        padding: 0 12px;
    }

    .odlogin-card {
        padding: 22px;
        border-radius: 14px;
    }

    .odlogin-title {
        font-size: 24px;
    }
}