* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
    background: linear-gradient(160deg, #8B5CF6, #EC4899);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wrapper {
    width: 100%;
    max-width: 430px;
}

.card {
    background: #fff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.logo {
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    text-align: center;
    font-size: 28px;
}

.desc {
    text-align: center;
    color: #666;
    margin: 8px 0 26px;
}

label {
    display: block;
    margin: 15px 0 8px;
    font-weight: 600;
}

input {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #ddd;
    border-radius: 16px;
    font-size: 15px;
}

input:focus {
    outline: none;
    border-color: #8B5CF6;
}

.row {
    text-align: right;
    margin: 10px 0 24px;
}

.row a {
    text-decoration: none;
    color: #8B5CF6;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 16px;
    background: #8B5CF6;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

button:hover {
    background: #7C3AED;
    transform: translateY(-2px);
}

.email-btn {
    display: block;
    text-align: center;
    margin-top: 18px;
    padding: 14px;
    border: 1px solid #8B5CF6;
    border-radius: 16px;
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 600;
}

.email-btn:hover {
    background: #F3E8FF;
}

.footer {
    text-align: center;
    color: #777;
    font-size: 13px;
    margin-top: 24px;
}

.footer span {
    color: #aaa;
}

.password-wrap {
    position: relative;
}

.password-wrap input {
    padding-right: 52px;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);

    width: 36px;
    height: 36px;

    padding: 0;
    margin: 0;

    border: none;
    background: transparent;

    color: #777;

    font-size: 18px;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: none;
}

.password-toggle:hover {
    background: transparent;
    transform: translateY(-50%);
}