@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100dvw;
    height: 100dvh;
    font-family: "Poppins", sans-serif;
}

header {
    background-color: #F6E1F6;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    padding: 15px ;
}

main {
    position: relative;
    width: 100vw;
    height: 100vh;
}

section#login {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

h1 {
    font-size: 50px;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 300;
}

p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #000000;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 70%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #a1a1a1;
    font-size: 16px;
    margin-top: 5px;
}

.forgot-password {
    text-align: right;
    margin-bottom: 20px;
    font-size: 14px;
    left: -70px;
    position: relative;
}

button {
    background-color: #007BFF;
    color: #ffffff;
    border: none;
    padding: 12px;
    width: 70%;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

footer {
    background-color: #B2E5D6;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    padding: 20px 7% 0 7%;
}

footer p {
    font-size: 1em;
}

.info span {
    margin: 10px;
}

.copyright {
    text-align: center;
}

form p {
    margin: 5px;
    font-size: 15px;
}
#errorMsg{
    color: red;
 
}
#successMsg{
    color: green;
}