body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.support-header {
    margin-top: 40px;
}

body form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    width: 600px;
}

.label {
    padding: 10px;
}

.input {
    padding: 5px;
    margin-bottom: 8px;
    border-radius: 10px;
    border: 1px solid lightgray;
    height: 30px;
    width: 75%;
}

.biginput {
    padding: 5px;
    margin-bottom: 8px;
    border-radius: 10px;
    border: 1px solid lightgray;
    height: 250px;
    width: 80%;
    box-sizing: border-box;
    resize: none;
}


.button {
    height: 50px;
    width: 140px;
    border-radius: 10px;
    background: white;
    color: black;
    border: 2px solid blue;
    transition: 0.3s;
}

.button:hover {
    background: blue;
    color: white;
    cursor: pointer;
}

.heading {
    display: flex;
    flex-direction: column;
    text-align: left;
    background: white;
    width: 100%;
    height: 150px;
    box-sizing: border-box;
    margin-left: 0;
    padding-left: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.top-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.nav {
    display: inline-block;
    margin-right: 50px;
    margin-left: 100px;
    margin-top: 10px;
    font-family: 'Arial', sans-serif;
}

.heading img {
    margin-left: 90px;
    padding: 0;
    line-height: 1.5;

}

.heading p {
    margin: 0;
    padding: 0;
    line-height: 2;
    font-size: 17px;
}

.heading a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    transition: color 0.1s ease;
    margin-right: 20px;
}

.heading a:hover {
    color: #007bff;
}


.header {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
}

.register-button {
    margin-top: 15px;
    text-align: center;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    width: 120px;
    height: 35px;
}

.register-button:hover {
    background-color: #bfbfbf;
}

.login-button {
    text-align: center;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    background: #56bbff;
    width: 120px;
    display: flex;
    align-items: flex-end;
    height: 35px;
}

.login-button:hover {
    background-color: #217ab8;
}

@media only screen and (max-width: 1080px) {
    .heading {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 10px;
    }

    .top-bar {
        flex-direction: column;
        align-items: center;
    }

    .top-bar-btn {
        margin-top: 10px;
    }

    .heading img {
        margin: 0;
        width: 150px;
        height: auto;
    }

    .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 10px 0;
    }

    .nav a {
        margin: 5px 0;
    }
}

.success-message {
    margin-top: 20px;
}