body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #f7f7f7;
}

.wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    background: white;
    width: 420px;
    padding: 40px;
    border-radius: 14px;

    border: 2px solid black;
    box-shadow: 10px 10px 0px black;

    text-align: center;
}

.title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

.label {
    display: block;
    text-align: left;
    font-weight: 700;
    margin: 12px 0 4px 2px;
}

.input {
    width: 100%;
    padding: 14px;
    border: 2px solid black;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 16px;
}

.btn {
    width: 100%;
    background: #ff6f6f;
    color: white;
    border: 2px solid black;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;

    box-shadow: 4px 4px 0px black;
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px black;
}

.divider {
    margin: 25px 0;
    font-weight: 600;
    position: relative;
}

.divider span {
    background: white;
    padding: 0 10px;
}

.divider::before,
.divider::after {
    content: "";
    height: 2px;
    width: 40%;
    background: black;
    position: absolute;
    top: 50%;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social {
    width: 48px;
    height: 48px;
    border: 2px solid black;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    background: white;
    box-shadow: 4px 4px 0px black;
}

.social:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px black;
}

.footer-text {
    font-size: 14px;
    margin-top: 10px;
}

.footer-text a {
    font-weight: 700;
    color: black;
}