* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #131419;
}

.content {
    width: 90%;
    max-width: 400px;
    padding: 40px 20px;
    background: #1a1b1f;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2),
                -3px -3px 7px rgba(255, 255, 255, 0.1);
}

.header {
    height: 70px;
    background-color: royalblue;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-shadow: 0 6px 7px -4px rgba(0, 0, 0, 0.2);
}

.content .text {
    font-size: 2.5em;
    font-weight: 600;
    color: #8c8c8c;
    margin-bottom: 35px;
}

form .field {
    height: 50px;
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}

.field input {
    height: 100%;
    width: 100%;
    border: none;
    font-size: 1em;
    outline: none;
    color: #b3b3b3;
    background: #131419;
    padding: 0 15px;
    border-radius: 25px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2),
                inset -3px -3px 7px rgba(255, 255, 255, 0.05);
}

.field input:focus {
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.2),
                inset -1px -1px 2px rgba(255, 255, 255, 0.05);
}

.field span {
    position: absolute;
    width: 50px;
    color: #8c8c8c;
    line-height: 50px;
}

input::placeholder {
    color: #8c8c8c;
}

form .forgot_pass {
    text-align: left;
    margin: 10px 0 10px 5px;
}

form .forgot_pass a {
    color: #3498db;
    font-size: 16px;
    text-decoration: none;
}

form .forgot_pass a:hover {
    text-decoration: underline;
}

form button {
    margin: 15px 0;
    width: 100%;
    height: 50px;
    font-size: 1em;
    background: #131419;
    border-radius: 25px;
    border: none;
    outline: none;
    color: #8c8c8c;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2),
                -3px -3px 7px rgba(255, 255, 255, 0.05);
}

form button:focus {
    color: #3498db;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2),
                inset -3px -3px 7px rgba(255, 255, 255, 0.05);
}

.loginerror {
    color: red;
    font-size: 1em;
}

.success {
    color: green;
    font-size: 1em;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #131419;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.footer {
    margin-top: 20px;
    color: grey;
    font-size: 0.9em;
    text-align: center;
}

