* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.register-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.facebook-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    color: white;
    background:#5873cc;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}
.facebook-btn:hover {
    background: #5873cc;
}


.or-text {
    text-align: center;
    margin: 15px 0;
    font-size: 14px;
    color: #6c757d;
}

.dropdown,
input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

input[type="date"] {
    color: #6c757d;
}

.submit-btn {
    width: 100%;
    background: #5873cc;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #5873cc;
}

.login-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.login-link a {
    color:#5873cc;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}
