body {
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.pageLogo {
    width: 250px;
    height: auto;
    padding: 10px;
}

h1 {
    color: #000088;
    font-size: 42px;
}

p, .required {
    color: #D30C0C;
}

.formContainer {
    margin-left: 20px;
    padding: 20px;
    max-width: 700px;
    margin: auto;
}

.formContent {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dataContainer {
    margin-bottom: 12px;
    position: relative;
    width: 100%;
}

label {
    padding: 6px;
    font-size: 20px;
    font-weight: bold;
}

select {
    text-align: center;
}

input, select {
    width: 100%;
    height: 40px;
    font-size: 16px;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

input:focus, select:focus {
    outline: none;
    border-color: #000088;
}

.submitButton {
    background-color: #000088;
    color: white;
    font-size: 20px;
    height: 50px;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    border: none;
}

.submitButton:hover {
    background-color: #000066;
}

.loginLink {
    color: #000088;
    padding: 5px 3px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
}

.loginLink:hover {
    text-decoration: underline;
}

.fa-solid, .fa-regular {
    padding: 2px;
}

.profile-pic-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px; 
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    width: 50%;
}

.profile-pic-container label {
    margin-bottom: 5px;
}

#institutionsDropdown {
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    max-height: 150px;
    overflow-y: auto;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-item {
    padding: 8px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}

@media screen and (max-width: 768px) {
    .mainContent {
        flex-direction: column;
        align-items: center;
    }

    .profile-pic-container {
        width: 100%;
        max-width: 300px;
    }

    .formContent {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .formContainer {
        margin: 10px;
        padding: 10px;
    }

    h1 {
        font-size: 32px;
    }

    .profile-pic-container {
        width: 100%;
        max-width: 300px;
    }

    label {
        font-size: 18px;
    }

    input, select, .submitButton {
        font-size: 14px;
        padding: 8px;
    }
}
