body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
    background-image: url('https://tse4.mm.bing.net/th/id/OIP.ZUEuZtsQk6jd41cRaYwDDwHaEC?cb=12&rs=1&pid=ImgDetMain&o=7&rm=3');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 420px;
    margin: 60px auto;
    background: rgba(255,255,255,0.92);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
h2 {
    text-align: center;
    color: #2d3e50;
    margin-bottom: 18px;
}
form label {
    display: block;
    margin-top: 0;
    margin-bottom: 6px;
    color: #3a3a3a;
    font-weight: 500;
}
form input {
    width: 100%;
    padding: 10px;
    margin-top: 0;
    margin-bottom: 0;
    border: 1px solid #b0c4de;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
}
form input:focus {
    border-color: #66a6ff;
    outline: none;
}
.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
}
button {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    background: #ff6666;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(102,166,255,0.15);
    transition: background 0.2s, box-shadow 0.2s;
}
button[type="reset"] {
    background: #b0c4de;
    color: #2d3e50;
}
button:hover {
    background: #89f7fe;
    box-shadow: 0 4px 16px rgba(102,166,255,0.18);
}
.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 0;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-group {
        margin-bottom: 12px;
    }
}
