/* calculator CSS */
form {
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.44);
    padding: 20px;
    color: black;
    font-weight: bold;
    display: flex;
    justify-content: center;
    height: 100%;
}

.no-margin {
    margin: 0 0;
}

form p {
    color: #FEDB5D;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: bold;
}

p.note-l {
    color: #FEDB5D;
    font-size: 30px;
    margin-bottom: 8px;
    font-weight: bold;
}

p.note-m {
    color: #FEDB5D;
    font-size: 25px;
    margin-bottom: 8px;
    font-weight: bold;
}


input[type=text], input[type=number], select {
    max-width: 50%;
    padding: 12px 20px;
    margin: 0 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=text].hidden {
    visibility: hidden;
}

input[type=password], select {
    max-width: 50%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=date], select {
    max-width: 50%;
    padding: 18px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
  
input[type=submit] {
    max-width: 50%;
    background-color: #FFDC5E;
    color: black;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 100ms;
    transition-timing-function: ease-in-out;
}
  
input[type=submit]:hover {
    background-color: rgb(224, 193, 82);
}

.footer {
    text-align: center;
    position:absolute;
    bottom:0;
}
body{
    background: linear-gradient(90deg, #4158d0 0%, #6356cc 25%, #8154c8 50%, #a252c4 75%, #c850c0 100%);
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    line-height: 22px;
    color: white;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

.contact-form {
    display: flex;
}

.contact {
    background-color: rgba(red, green, blue, 0,8);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.calculator {
    display: flex;
    flex-direction: row;
    margin: 10px;
}
.calc {
    max-width: 500px;
    max-height: 500px;
}