body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #F0F0F0;
    color: #001358;
}

.create-profile-section {
    width: 80%;
    max-width: 900px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10% auto;
}

.create-profile-section div {
    width: 100%;
}

.create-profile-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.create-profile-section p {
    font-size: 16px;
    margin-bottom: 30px;
    margin-right: 32px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 80%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit-button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.1s;
}

.submit-button:hover {
    background-color: #0056b3;
}

.submit-button:active {
    background-color: #034183;
}

#errorMessage {
    color: rgb(179, 0, 0);
    font-size: 12px;
}


@media screen and (max-width: 660px) {
    .create-profile-section {
        flex-direction: column;
        padding: 20px;
    }

    .create-profile-section div {
        width: 100%;
    }

    .form-section {
        text-align: center;
        width: 100%;
    }

    .form-group input {
        width: 70%;
    }

    .create-profile-section p {
        margin-right: 0px;
    }
}

@media screen and (max-width: 500px) {
    .form-group input {
        width: 90%;
    }
}

