.main-hero-section {
    background-color: #F3E4C9;
    background-size: cover;
    background-position: center;
    /* height: 100vh; */
}

.main-content {
    margin-left: 6%;
    margin-top: 50px;
}

.highlighted-main-content {
    color: #FAB95B;
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.highlighted-text {
    padding-right: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}


.sub-content {
    font-size: 70px;
    color: #E6501B;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 900;
    margin-bottom: 30px;
}

.heading-1 {
    color: white;
}

.main-info {
    color: white;
    font-size: 20px;
    width: 800px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}



/* Container */
.login-container {
    width: 300px;
    background: white;
    margin: 80px auto;
    padding: 20px;
    border-radius: 10px;
    text-align: center;

    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Heading */
.login-container h1 {
    margin-bottom: 10px;
}

.sub {
    color: gray;
    margin-bottom: 20px;
}

/* Inputs */
input {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Button */
button {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background: #E6501B;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

button:hover {
    background: darkorange;
}

/* Extra */
.extra {
    margin-top: 15px;
}

.extra a {
    color: orange;
    text-decoration: none;
}