@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@400;500&family=Roboto:wght@400;500&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.logo-section {
    display: flex;
    justify-content: space-between; 
    padding: 20px 40px;
}

h6 {
    margin-top: 30px; 
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    text-align: center;
    font-size: 15px; 
}

h6 a {
    color: #007bff;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: bold; 
    text-align: center;
    font-size: 15px; 
}

h6 a:hover {
    text-decoration: underline;
}


.logo-container {
    margin-left: 10px; 
}

.logo-top-left {
    height: 80px;
}

.logo-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo-top-right {
    height: 60px;
    margin-left: 10px; 
}

.form-wrapper {
    max-width: 800px;  
    margin: 0 auto;    
    padding: 20px;
    margin-top: 0px;
}

.register-title {
    font-family: 'Readex Pro', sans-serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.card {
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.section-title {
    font-family: 'Readex Pro', sans-serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.section-divider {
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col-md-3 {
    width: 24%;
    padding: 10px;
    box-sizing: border-box;
}

.col-md-4 {
    width: 32%;
    padding: 10px;
    box-sizing: border-box;
}

.col-md-6 {
    width: 48%;
    padding: 10px;
    box-sizing: border-box;
}

.form-control {
    border-radius: 25px;
    background-color: #e0f0ff;
    padding: 10px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
}

.form-group.text-center {
    text-align: center;
}

.btn-create-account {
    background-color: #007bff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    border: none;
}

@media (max-width: 768px) {
    .col-md-3, .col-md-4, .col-md-6 {
        width: 100%;
    }
}

