*, *:before, *:after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: linear-gradient(to right, #66b4d3 0%, #66b4d3 100%);
    font-size: 12px;
}

body, button, input, select {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.background {
    display: flex;
    min-height: 100vh;
}

.container {
    flex: 0 1 700px;
    margin: auto;
    padding: 10px;
}

.screen {
    position: relative;
    background: #3e3e3e;
    border-radius: 15px;
}

.screen:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    bottom: 0;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    z-index: -1;
}

.screen-body {
    display: flex;
}

.screen-body-item {
    flex: 1;
    padding: 50px;
}

.screen-body-item.left {
    display: flex;
    flex-direction: column;
}

.app-title {
    display: flex;
    flex-direction: column;
    position: relative;
    color: #66b4d3;
    font-size: 26px;
}

.app-title:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 25px;
    height: 4px;
    background: #66b4d3;
}

.app-subtitle {
    display: flex;
    flex-direction: column;
    position: relative;
    color: #66b4d3;
    font-size: 18px;
}

.app-form-group {
    margin-bottom: 15px;
}

.app-form-group.message {
    margin-top: 40px;
}

.app-form-group.buttons {
    margin-bottom: 0;
    text-align: right;
}

.app-form-control {
    width: 100%;
    padding: 8px;
    background: none;
    border: none;
    border-bottom: 1px solid #808080;
    color: #ddd;
    font-size: 16px;
    outline: none;
    transition: border-color .2s;
}

.app-form-control::placeholder {
    color: #808080;
}

.app-form-control:focus {
    border-bottom-color: #ddd;
}

.app-form-button {
    background: none;
    border: none;
    color: #66b4d3;
    font-size: 16px;
    cursor: pointer;
    outline: none;
}

.app-form-button:hover {
    color: #3d758b;
}

.dribbble {
    width: 20px;
    height: 20px;
    margin: 0 5px;
}

/* New styling for output */
#output {
  margin-top: 20px;
  padding: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #ddd;
}

@media screen and (max-width: 520px) {
    .screen-body {
        flex-direction: column;
    }

    .screen-body-item.left {
        margin-bottom: 30px;
    }

    .app-title {
        flex-direction: row;
    }

    .app-title span {
        margin-right: 12px;
    }

    .app-title:after {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .screen-body {
        padding: 40px;
    }

    .screen-body-item {
        padding: 0;
    }
}

h1 {
    margin: 50px 0;
    font-size: 50px;
    font-weight: 100;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #333333;
}

ul {
    width: 620px;
    margin: 0 auto;
}

ul li {
    float: left;
    list-style: none;
    margin-right: 10px;
    position: relative;
}

ul li a {
    font: 700 15px 'Montserrat', sans-serif;
    text-transform: uppercase;
    position: relative;
    color: #333333;
    text-decoration: none;
    border: 3px solid #000000;
    letter-spacing: 1px;
    padding: 10px 15px 10px 25px;
    display: block;
    width: 150px;
    z-index: 5000;
}

ul li a i {
    font-size: 12px !important;
    position: absolute;
    right: 10px;
    top: 14px;
}

ul li .drop-down {
    position: absolute;
    padding: 0;
    display: none;
    margin: 0;
    left: 0;
    z-index: 0;
}

ul li .drop-down li {
    position: relative;
    float: none;
}

ul li .drop-down li a {
    border-top: none;
    width: 150px;
}

ul li .drop-down li a:hover {
    background: #000000;
    color: #ffffff;
}

ul li .drop-down li:nth-of-type(1) a {
    border-top: none;
}

.accent {
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #000;
    position: absolute;
    transition: 0.3s ease;
}

.animate {
    width: 100%;
    transition: 0.3s ease;
}

.item:hover {
    color: #ffffff;
}

label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #ffffff;
}

/* Styling for dropdown fields */
select {
    width: 100%;
    padding: 12px;
    margin: 10px 0; /* Add this line */
    background: none;
    border: none;
    border-bottom: 1px solid #808080;
    color: #ddd;
    font-size: 16px;
    outline: none;
    transition: border-color .2s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.4px;
}

select:focus {
    border-bottom-color: #ddd;
}

select::placeholder {
    color: #808080;
}

select option {
    color: #000;
    background: #fff;
}
option {
    color: #825d5d; /* Change this to your desired color */
}