@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;1,300&display=swap');
*, body, html{
    margin: 0;
    padding: 0;
    box-sizing: border-box;  
}

body{
    font-family: 'Lato', sans-serif;
    font-size: 24px;
   font-style: normal;
   font-weight: 500;
   line-height: 29px;
    letter-spacing: 0.1em;
   text-align: left;

}

.bg-login{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 30%;
    min-height: 100vh;
    background: url("../images/cool-background\ 2.png");
    background-size: cover;
}

.row a{
   color: #D62246;
}

.row button{
    background: #274590;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
}

@media (max-width:480px) {
    .bg-login{
        display: none;
    }
    
    .button{
        margin-top: 20px;
    }
} 