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

body {
    background: #f0f2f5;
}

a{
    text-decoration: none;
    color: inherit;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 280px;
}

.left{
    height: 450px;
}

#logo {
    height: 70px;
    margin-left: -20px;
}

.tagline {
    font-size: 36px;
    font-weight: lighter;
    color: #333333;
}

.sub {
    color: #606770;
    font-size: 15px;
    margin-bottom: 30px;
}

.cards {
    display: flex;
    gap: 15px;
}

.card {
    width: 160px;
    border-radius: 8px;
    border: 1px solid #dddfe2;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0 20 4px black;
    color: #4b4f56;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card p {
    padding: 12px;
    font-size: 18px;
    background-color: white;
    width: 100%;
}

.card.add {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card>span{
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f4f7;
}

.card>span>i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1877f2;
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.right {
    width: 400px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.login-box input {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border: 1px solid #dddfe2;
    border-radius: 6px;
    font-size: 18px;
}

.login {
    width: 100%;
    padding: 14px;
    background: #1877f2;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.forgot {
    display: block;
    text-align: center;
    margin: 15px 0;
    color: #1877f2;
    text-decoration: none;
    font-size: 14px;
}

hr {
    height: 1px;
    background-color: #dadde1;
    border: none;
    margin: 20px 0;
}

.create {
    display: block;
    margin: 0 auto;
    padding: 12px 16px;
    background: #42b72a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.page-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}