@charset "UTF-8";
/* CSS Document */
*{
    margin:0;
    padding:0;
    font-size:16px;
    font-family:"Helvetica";
    list-style:none;
}
body {
    background-color: darkcyan;
}
.form {
    background-color: aliceblue;
    box-sizing: border-box;
    height: auto;
    padding: 20px;
    width: 400px;
    margin: 60px auto;
    border-radius: 24px;
    border: 1px solid #ddd;
}
.title {
    color: darkblue;
    font-family: sans-serif;
    font-size: 20px;
    text-align: center;	
    font-weight: 600;
    width: 80%;
    margin: auto;
}
.input-container {
    position: relative;
    width: 100%;
    margin: 6px auto;
    text-align: center;
    }
.submit {
    background-color: #0099cc;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #eee;
    cursor: pointer;
    font-size: 18px;
    height: 40px;
    margin: 20px auto;
    text-align: center;
    width: 120px;
    }
.submit:active {
    background-color: #06b;
}
.error-message {
    color: red;
     font-family: sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
    text-align: center;
}
.credit {
    width: 80%;
    margin: 0px auto;
    display: flex;
    align-items: center;
    background-color: darkcyan;
}
.brand {
    width: 25%;
}
.brand img {
    width: 100%;
    height: auto;
}
.copyright {
    width: 75%;
    color: white;
}
p {
    font-size: 18px;
    text-align: center;
}
