@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.cointainer {
    font-family: Arial, sans-serif;
    background-color: #2c2c2c;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
header{
    background-color: #4b3d53;
    display: flex; justify-content: space-between;
    align-items: center;
}

.login-box {
    background-color: #83657A;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
    max-width: 600px;
    line-height: 2rem;
}

.logo {
    margin-bottom: 1rem;
}

.logo img {
    width: 100px; /* Adjust size as needed */
}

h2 {
    margin-bottom: 1.5rem;
    color: white;
}
input[type="submit" i] {
    background-color: #B782B0;
    padding: 0.5rem 2.8rem ;
    border: none;
    color: #fff;
    /* font-family: 'Poppins'; */
}

.input-group {
    margin-bottom: 1rem;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background-color: #5e506d;
    color: white;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background-color: #d799cb;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #b86ca4;
}
