@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: #2196f3;
    font-family: Arial, sans-serif;
}

.container {
    width: 370px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.container .title {
    text-align: center;
    line-height: 70px;
    margin-bottom: 10px;
    color: white;
    background: #007dc1;
}

.container .title h2 {
    font-size: 30px;
}

.container form {
    padding: 25px;
}

.container form .field {
    height: 40px;
    margin-bottom: 15px;
    position: relative;
}

.container form .field input {
    height: 100%;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    border: 1px solid gray;
    outline: none;
    padding-left: 60px;
}

.container form .field i {
    position: absolute;
    width: 50px;
    height: 100%;
    background: #007dc1;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: white;
    border-radius: 5px 0 0 5px;
}

.container form .signup {
    margin-top: 15px;
}

.container .footer {
    text-align: center;
    line-height: 10px;
    margin-top: 10px;
    font-size: 9px;
}

.container form .login button {
    font-size: 20px;
    padding: 6px 6px;
    box-shadow: inset 0px 1px 0px 0px #54a3f7;
    background: linear-gradient(to bottom, #007dc1 5%, #0061a7 100%);
    background-color: #007dc1;
    border-radius: 4px;
    border: 1px solid #124d77;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0px 1px 0px #154682;
    margin-top: 15px;
    width: 100%;
}

.container form .login button:hover {
    background: linear-gradient(to bottom, #0061a7 5%, #007dc1 100%);
    background-color: #0061a7;
}

.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.4;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.forgot {
    text-align: center;
    margin-top: 15px;
}

.forgot a {
    color: #007dc1;
    text-decoration: none;
    font-size: 14px;
}

.forgot a:hover {
    text-decoration: underline;
}

.container textarea {
    font-family: Arial, sans-serif;
    font-size: 12px;
    resize: vertical;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
}