*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #0043be;
}

.background {
    width: 430px;
    height: 520px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.background .shape {
    height: 200px;
    width: 200px;
    position: absolute;
    border-radius: 50%;
}

.shape:first-child {
    background: linear-gradient(to bottom right, #0039a3, #23a2f6);
    left: -80px;
    top: -100px;
}

.shape:last-child {
    opacity: 70%;
    right: -90px;
    bottom: -100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shape:last-child img {
    width: 210px;
    height: 210px;
    opacity: 65%;
}

form {
    height: 520px;
    width: 400px;
    background-color: rgba(255, 255, 255, 0.092);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.432);
    padding: 50px 35px;
}

form * {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}

form h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
    margin-bottom: 25px;
}

label {
    display: block;
    margin-top: 25px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

input {
    display: block;
    height: 60px;
    width: 100%;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.137);
    border-radius: 3px;
    padding-left: 8px;
    padding-top: 18px;
    margin-top: 5px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 380;
}

#username {
    display: block;
    height: 60px;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.137);
    border-radius: 3px;
    padding-left: 0px;
    margin-top: 5px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 380;
    padding-top: 0px;
}

.password-container {
    position: relative;
}
.password-container input {
    display: block;
    height: 60px;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.137);
    border-radius: 3px;
    padding-left: 8px;
    margin-top: 5px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 380;
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
}

.password-container .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

::placeholder {
    color: #e5e5e5;
}

button[name="goadmin"] {
    width: 140px;
    background-color: rgba(255, 217, 0, 0.774);
    transition: background-color 0.3s;
    color: #00137b;
    padding: 5px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 8px;
    margin-left: 92px;
}

button[name="goadmin"]:hover {
    background-color: rgb(255, 215, 0);
    color: #00137b;
}

button {
    margin-top: 35px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    transition: background-color 0.3s;
    transition: color 0.3s;
    color: #002397;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: rgb(0, 47, 201);
    color: #ffffff;
}

.logout-button {
    background-color: #d50000bf;
    width: 116px;
    color: #ffffffc2;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
    padding: 5px;
    display: block;
    font-size: 14px;
    text-align: center;
    margin-top: -36px;
    margin-bottom: 20px;
    margin-left: 232px;
}
.logout-button:hover {
    background-color: #d50000;
    color: #ffffff;
}

.error {
    display: none;
    font-family: 'Poppins', sans-serif;
    width: 400px;
    background-color: #ffdddd;
    color: #d8000c;
    padding: 10px;
    margin: 90px auto;
    border: 1px solid #d8000c;
    border-radius: 5px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    left: 95px;
    top: -65px;
    position:absolute;
}

.downloadcomplete {
    display: none;
    font-family: 'Poppins', sans-serif;
    width: 400px;
    background-color: #ddffe2;
    color: #00df55;
    padding: 10px;
    margin: 90px auto;
    border: 1px solid #00d836;
    border-radius: 5px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    left: 95px;
    top: -65px;
    position:absolute;
}