body {
    background-color: #18191a;
    color: #e4e6eb;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.main-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 980px;
}

.logo-section {
    width: 500px;
}

.fb-logo-text {
    font-size: 60px;
    color: #1877f2;
    font-weight: bold;
    margin: 0;
}

.fb-subtitle {
    font-size: 24px;
    color: #e4e6eb;
    margin: 10px 0;
}

.signup-container {
    background-color: #242526;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.instruction-text {
    font-size: 13px;
    color: #b0b3b8;
    margin-bottom: 8px;
}

input[type="text"], input[type="password"], input[type="date"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #3e4042;
    background-color: #3a3b3c;
    color: white;
    box-sizing: border-box;
}

.password-wrapper {
    position: relative;
}

.toggle-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    color: #b0b3b8;
    cursor: pointer;
    font-size: 18px;
}

.radio-option {
    background-color: #3a3b3c;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #3e4042;
}

.next-btn {
    width: 100%;
    padding: 12px;
    background-color: #1877f2;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.footer-links {
    text-align: center;
    margin-top: 15px;
}

.footer-links a {
    color: #1877f2;
    text-decoration: none;
    font-size: 14px;
}

