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

body {
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    font-family: 'Poppins', sans-serif;
}

.container {
    background-color: whitesmoke;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 25px;
    margin: 5px 0px 10px 0px;
}

.header,
.logo {
    color: #1F2937;
}

.description {
    font-size: 15px;
    margin: 10px 0px 15px 0px;
    color: #6B7280;
}

.container input[type="email"],
.container input[type="password"],
.container input[type="button"] {

    width: 100%;
    padding: 12px 10px;
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    font-size: 14px;

}

.container input[type="email"],
.container input[type="password"] {
    color: #9CA3AF;
    background-color: #F5F7FA;
}

.container input[type="email"],
.container input[type="password"],
.container input[type="button"] {
    margin: 10px 0px 10px 0px;
}

.container input[type="button"] {
    color: #F5F5F5;
    background-color: #1F2328;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

.forgot_link {
    display: block;
    color: #6B7280;
    text-decoration: none;
    text-align: end;
    margin-top: 10px;
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    font-size: 14px;
    color: #6B7280;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #E5E7EB;
}

.social {
    display: flex;
    justify-content: space-around;
}

.social .social_button {
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.social .social_button img {
    padding: 5px;
    width: 35px;
}

/* Adding effects */

.container input[type="button"]:hover {
    cursor: pointer;
    transform: scale(1.01);
}