html, body {
    margin: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
    background-image: url("https://preprod.hook.euresto.com/media/4308bc82-49c2-41f3-bfd3-cc2deb764211");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper {
    transform: translateX(320px);
}

.card {
    position: relative;
    width: 320px;
    height: 450px;
    background: #fff;
    border-radius: 6px;
    padding: 34px 28px 34px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.45);
    overflow: hidden;
}

.marker {
    position: absolute;
    top: 0;
    left: 36px;
    width: 80px;
    height: 3px;
    background: #1a73e8;
    border-radius: 2px;
}

.nas-text {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.nas-text span {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
    margin-right: 12px;
}

.title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.password-container {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}

input {
    width: 100%;
    padding: 10px 40px 10px 12px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.eye-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.eye-toggle svg {
    stroke: #000;
    fill: none;
    stroke-width: 2;
    width: 22px;
    height: 22px;
}

.error-msg {
    color: #d93025;
    font-size: 13px;
    margin: 6px 0 10px;
    display: none;
}

.success-msg {
    color: #188038;
    font-size: 14px;
    margin: 6px 0 10px;
    display: none;
}

.submit-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #1a73e8;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.submit-btn:disabled {
    background: rgba(26,115,232,0.4);
    cursor: not-allowed;
}
