/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background: #090979;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container */
.container {
    width: 100%;
    max-width: 800px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Title */
.form-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Section titles */
.section-title {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #1a73e8;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

/* Layout */
.main-user-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Input boxes */
.user-input-box {
    width: 48%;
    margin-bottom: 15px;
}

.user-input-box.full-width {
    width: 100%;
}

.user-input-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.user-input-box input,
.user-input-box select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Terms */
.terms {
    margin: 15px 0;
    font-size: 14px;
}

/* Button */
.form-submit-btn input {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    background: #1a73e8;
    color: white;
    cursor: pointer;
}

.form-submit-btn input:hover {
    background: #155ab6;
}

/* Login link */
.login-link {
    margin-top: 15px;
    text-align: center;
}

.login-link a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .user-input-box {
        width: 100%;
    }
}