:root {
    --primary-color: #0067b8;
    --background-Color: #f2f8f9;
}

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

body {
    background: var(--background-Color);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.width-100 {
    width: 100%;
}

.d-flex {
    display: flex;
}

.logo-div {
    width: 150px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.card-div {
    width: 40%;
    padding: 40px;
    display: flex;
    border-radius: 35px;
    background: #fff;
    box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    align-items: center;
    flex-direction: column;
}

.sing-in-text {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    background-color: #f5f5f5 !important;
    box-shadow: unset !important;
    transition: .5s;
    font-size: 14px;
    color: black;
    border: none !important;
    padding-left: 15px;
    border-radius: 15px;
    height: 50px;
}

.remember-forgot-div {
    height: 30px;
    align-items: center;
}

.remember-me-text {
    margin-right: auto;
    margin-left: 10px;
    color: gray;
}

a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

a:hover {
    text-decoration: 2px underline;
}

button {
    width: 100%;
    display: block;
    overflow: hidden;
    margin-top: 20px;
    text-align: center;
    padding: 15px 30px;
    color: var(--primary-color);
    transition: .5s;
    background-color: white;
    font-size: 22px;
    border-radius: 34px;
    border: 2px solid;
    font-weight: 600;
}

button:hover {
    background-color: var(--primary-color);
    color: white;
}

.dont-account {
    display: block;
    margin-top: 25px;
    color: var(--paragraphColor);
    text-align: center;
}

.follow-acc-div {
    padding: 15px;
    align-items: center;
    justify-content: center;
}

.follow-text {
    color: gray;
    font-weight: 600;
}

.follow-sub-div {
    width: 42px;
    height: 42px;
    display: block;
    font-size: 20px;
    border-radius: 50px;
    text-align: center;
    position: relative;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    cursor: pointer;
}

.div-linkedin {
    color: white;
    border-color: #1386de;
}

.div-youtube {
    color: white;
    border-color: #ff2c2c;
}

.div-twitter {
    color: white;
    border-color: #08b5eb;
}

.div-facebook {
    color: white;
    border-color: #41a0ff;
}

.div-linkedin:hover {
    border: 3px solid #1386de;
}

.div-youtube:hover {
    border: 3px solid#ff2c2c;
}

.div-twitter:hover {
    border: 3px solid #08b5eb;
}

.div-facebook:hover {
    border: 3px solid #41a0ff;
}

.follow-sub-div > img{
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 0;
}

@media (max-width: 1200px) {
    .card-div {
        width: 70%
    }
}

@media (max-width: 900px) {
    .card-div {
        width: 80%
    }
}

@media (max-width: 465px) {
    .card-div {
        width: 95%
    }

    button {
        width: 90%;
    }

}