@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&display=swap');

body {
    font-family: "Familjen Grotesk", sans-serif;
}

.welcome {
    font-weight: bold;
    font-size: 55px;
    text-align: center;
    margin-top: 50px;
}

.subhead {
    font-size: 17px;
}

.form-card {
    max-width: 50%;
    margin: 0 auto;
    margin-top: 20px;
    background-color: #dc143c0e;
    padding: 60px 50px;
}

.linked-in {
    width: 100%;
    padding: 15px 10px;
    color: white;
    border: none;
    background-color: #0474b6;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    text-decoration: none;
}

.google {
    width: 100%;
    padding: 15px 10px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid;
    background-color: white;
    color: black;
}

.dashed-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    margin: 0 auto;
}

.dashed-line::before,
.dashed-line::after {
    content: '';
    flex: 1;
    border-bottom: 1px dashed lightgray;
    margin: 0 30px;
}

.input {
    border: none;
    padding: 20px;
    outline: none;
    width: 100%;
}

.login-btn {
    margin: 10px auto;
    width: fit-content;
    padding: 15px 50px;
    color: white;
    margin-top: 10px;
    background-color: #DC143C;
}

.link {
    color: #DC143C;
}

.announcement {
    display: flex;
    gap: 10px;
    font-size: 14px;
    padding: 10px 20px;
    color: white;
    background-color: #DC143C;
    align-items: start
}

.announcement p {
    margin-bottom: 0;
}

.login-link {
    color: #DC143C;
}

.grid-cols-2 {
    gap: 25px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.announcement img {
    width: 25px;
    height: 25px;
}

@media screen and (max-width: 480px) {
    .grid-cols-2 {
        display: block;
    }

    .welcome {
        font-size: 20px;
    }

    .subhead {
        font-size: 16px;
    }

    .form-card {
        padding: 40px 20px;
        max-width: 100%;
    }

    .dashed-line {
        width: 100%;
    }

    .input {
        padding: 10px;
    }
}