* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-wrapper {
    width: 100%;
    height: 600px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.form-wrapper > div {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .form-wrapper {
        height: 500px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .form-wrapper {
        height: 450px;
        border-radius: 12px;
    }
}
