/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    Version 0.1.21

*/

/* daily */
body {
    background-image: url('../img/home-bg.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.daily{
    padding: 250px 10% 200px;
}

.daily-right{
    display: flex;
    justify-content: flex-end;
}

.daily-right img{
    width: 500px;
}

.daily__form{
    padding: 20px 0;
}

.daily__input{
    display: flex;
    flex-direction: column;
}

.daily__input label{
    font-size: 18px;
    font-weight: 600;
    color: white;
}

input{
    background: transparent;
    border: none;
    outline: none;
    height: 70px;
    border-bottom: 2px solid #019418;
    margin-bottom: 40px;
    font-weight: 500;
}

input:focus{
    border-bottom: 2px solid #019418;
}

.alert{
    border: none;
    padding: 25px;
    font-weight: 500;
    border-radius: 50px;
    background: rgba(1, 148, 24, 0.41);
    color: #7fde7f;
}

.alert-danger{
    color: #019418;
    background: rgba(1, 148, 24, 0.41);
}

button{
    margin-top: 40px;
    border: none;
    outline: none;
    padding: 24px 70px;
    color: white;
    background: linear-gradient(90.13deg, #019418 0.63%, #019418 94.69%);
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    gap: 40px;
    align-items: center;
    transition: .5s;
    box-shadow: 0px 20px 25px rgba(1, 148, 24, 0.15);
}

button:hover{
    scale: 1.05;
    transition: .5s;
}

@media only screen and (max-width: 1100px) {
    .daily{
        padding: 200px 10% 140px;
    }

    .daily__form{
        padding: 30px 0;
    }
}