* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif;
}

body {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}

.container {
    max-width: 432px;
    width: 100%;
}

.fb-logo {
    color: #1877f2;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.form-wrapper {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.form-wrapper p {
    font-size: 14px;
    color: #606770;
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dob {
    width: 30%;
}

input[type="text"],
input[type="password"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccd0d5;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 10px;
}

.form-row input[type="text"] {
    width: 100%;
    flex: 1;
}

.label {
    font-size: 14px;
    color: #606770;
    margin: 10px 0 5px;
}

.gender {
    gap: 10px;
    margin-bottom: 20px;
}

.gender label {
    flex: 1;
    border: 1px solid #ccd0d5;
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
}

.gender input {
    margin-right: 6px;
}

.passGen {
    padding: 6px 14px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #19089b;
    color: #333;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    margin-bottom: 10px;
}

.passGen:hover {
    background: #e9e9e9;
    border-color: #b5b5b5;
}

.passGen:active {
    background: #dcdcdc;
}

.info-text {
    font-size: 11px;
    color: #777;
    margin-bottom: 10px;
}

.info-text a {
    color: #385898;
    text-decoration: none;
}

.signup-btn {
    background-color: #00a400;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: none;
    text-align: center;
    width: 100%;
}

.signup-btn:hover {
    background-color: #009000;
}

.password-container {
    position: relative;
}

.password-container i {
    position: absolute;
    right: 10px;
    top: 42%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #bebbbb;
}