@charset "UTF-8";

.forms {
    width: 60vw;
    margin: 64px auto;
}

.forms .tabrow {
    text-align: left;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 24px;
    position: relative;
}

.forms .tabrow li {
    margin: 0 4px 0 0;
    padding: 15px 10px;
    border: 1px solid #f7f7f7;
    background: #fff;
    display: inline-block;
    position: relative;
    z-index: 0;
    cursor: pointer;
    width: 220px;
    height: 56px;
    color: #666;
}

.forms .tabrow li.selected {
    background: #f8f8f8;
    color: #000;
    z-index: 2;
    border-color: #f0f0f0;
    border-bottom-color: #f8f8f8;
}

.forms .tabrow:after {
    position: absolute;
    content: "";
    width: 100%;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #f0f0f0;
    z-index: 1;
}

.forms .tabrow:before {
    z-index: 1;
}

.forms .tabrow li i {
    margin-right: 8px;
}

.forms .tabcontents {
    background-color: #f8f8f8;
    border-bottom: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
}

.forms .tabcontent {
    display: none;
    padding: 12px;
    position: relative;
}

.forms .tabcontent.selected {
    display: block;
}

.forms p.title {
    background-color: #22c0d8;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    padding: 32px 10px 28px;
    position: absolute;
    top: 96px;
    left: 18px;
    right:18px;
}

.forms p.title.company {
    background-color: #6eca06
}

.forms .form {
    border: 5px solid #e6e6e6;
    background-color: #fff;
    margin: 12px;
}

.forms .form h2 {
    text-align: center;
    font-size: 16px;
    color: #4d4d4d;
    margin: 24px 0 145px;
}

.forms .form .row {
    margin: 12px 20px;
}

.forms .form label {
    display: block;
    color: #777;
    font-size: 16px;
    font-weight: bold;
}

.forms .form input,
.forms .form textarea {
    width: 100%;
    padding: 0 10px;
    height: 40px;
    border: 1px solid #eaeaea;
    color: #444;
}

.forms .form textarea {
    height: 400px;
}

.forms .form input.button {
    border: 1px solid #00a9d1;
    color: #fff;
    background-color: #00a9d1;
    display: block;
    width: 80px;
    border-radius: 5px;
    margin: 24px auto;
    font-size: 14px;
    cursor: pointer;
}

.forms .form input.button:hover {
    color: #00a9d1;
    background-color: #fff;
}

.done h2 {
    text-align: center;
}

@media (max-width: 1050px) {
    .forms {
        width: 90vw;
    }
}