*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}


body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #333;
}


header {
    padding:10px 20px;
    background-color: #f5f5f5;
}

.header-container {
    display:flex;
    justify-content: space-between;
    align-items:center;
    padding: 10px 20px;
    background-color: #ffffff;
    border: none;
}

.logo-image{
    width:200px;
    height: auto    ;
    margin-right: 10px;
    border: none;
}


.logo-text{
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.logo-container {
    display: flex;
    align-items: center;
    border: none;
}

.admin-link {
    margin-left:auto;
    border: none;
}

.admin-link a{
    text-decoration:none;
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    outline: none;
}

.admin-link a:hover{
    color:#007bff;
}

.login-link {
    text-align: center;
    font-size: 0.9rem;
    color:#333;
    background-color: #f5f5f5;
    padding: 10px 0;
}


.login-link a{
    color:#007bff;
    text-decoration: none;
    font-weight: bold;
}


.login-link a:hover{
    text-decoration: underline;
}



main{
    max-width: 500px;
    margin: 30px auto;
    padding:0 20px;
    background-color: #ffffff;
}


.sign-up-form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.form-group {
    display:flex;
    flex-direction: column;
    gap:10px;
}


.phone-container {
    position: relative;
    display: flex;
    align-items: center;
}


.question-icon {
    position: absolute;
    right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.question-icon:hover {
    opacity: 0.8;
}


.form-group input,.form-group select, .form-group textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius:5px;
    background-color:#fff;
    font-size: 1rem;
}


.sign-up-form {
    border: none;
    box-shadow: none;
}


textarea{
    resize: none;
}


.form-group.checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 10px;   
}


.checkbox input[type="checkbox"]{
    width: auto;
    margin-right: 10px;
    height:20px;
    align-self:center;
}


.checkbox label {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}


.submit-btn {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn:hover{
    background-color: #0056b3;
}

.success-container{
    max-width:500px;
    margin:50px auto;
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

.success-message{
    font-size:1.2rem;
    color:#28a745;
    margin-bottom:20px;
}

.return-btn{
    display:inline-block;
    padding:10px 20px;
    font-size:1rem;
    color:#fff;
    background-color:#007bff;
    text-decoration:none;
    border-radius: 5px;
    transition:background-color 0.3s;
}

.return-btn:hover{
    background-color: #0056b3;
}