body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background: #04293A;
}

.box {
    width: 300px;
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #041C32;
    text-align: center;  
}

.box h1 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.box input[type="text"], .box input[type="email"], textarea{
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #064663;
    padding: 15px 10px;
    width: 200px;
    color: #bbb;
    border-radius: 24px; 
    outline:none;
}

.box input[type="text"]:focus, .box input[type="email"]:focus, textarea:focus {
    transition: 0.25s;
    width: 280px;
    border-color: #f05454;
}

.box input[type="submit"] {
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border:2px solid #f05454;
    padding: 14px 40px;
    width: 200px;
    outline: none;
    color:#fff;
    border-radius: 24px;
    cursor: pointer;
}

.box input[type="submit"]:hover {
    background: #f05454;
}

/*****Form-result*****/

.form-result {
    width: 80%;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 3px;
    
}

.success {
    background-color: #066344;

}

.error {
    background-color: #df5252;
}