.login-wrapper {
    width: 100%;
    max-width: 380px;
    padding: 50px 20px;
    margin: 0 auto;
}

.login-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
}

.login-header {
    text-align: center;
    margin-bottom: 28px;
}

.login-header h1 {
    font-size: 26px;
    font-weight: 800;
    color: #1f2a33;
    margin-bottom: 6px;
}

.login-header p {
    font-size: 13px;
    color: #6b747b;
}

input:focus {
    outline: none;
    border-color: #0f7f8c;
    box-shadow: 0 0 0 3px rgba(15, 127, 140, .12);
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 18px;
}

.options a {
    color: #0f7f8c;
    text-decoration: none;
    font-weight: 600;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: #0f7f8c;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: .2s;
}

.btn-login:hover {
    background: #0b6f7a;
    transform: translateY(-1px);
}

.signup {
    text-align: center;
    font-size: 13px;
    margin-top: 18px;
    color: #666;
}

.signup a {
    color: #0f7f8c;
    font-weight: 700;
    text-decoration: none;
}

@media(max-width:480px) {
    .login-card {
        padding: 28px 20px;
    }
}