* {
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif; 
    font-size: 12px;
    display: flex;
    justify-content: center;
}
.container{
    position: relative;
    border: 1px solid #cfdede;
    width: 320px;
    height: 370px;
    align-items: center;  
    padding: 33px 29px;  
    margin-top: 100px;
}
.header-form {
    position: absolute;
    background-color: #01b3b3;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    padding: 6px 9px;
    top: -4px;  
}
.container p {
    font-weight: bold;
    margin: 16px auto 15px auto;

}
.container input {
    width: 260px;
    height: 32px;
    padding: 10px;
    font-weight: 300;
    font-style: italic;
    font-size: 12px;
    background-color: #ebf4f4;
    border: 1px solid #cfdede;

}
.star {
    color: #01c0c0;
}
.container button {
    background-color: #01c4c4;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color:#fff;
    text-align: center;
    height: 45px;
    width: 260px;
    border: none;
    border-radius: 3px;
    margin-top: 32px;
}
