body{
    margin: 0;
    padding: 0;
    background-image: url(images/b-background.jpg);
    background-attachment: fixed;
   background-repeat: no-repeat;
   background-size: cover;
   overflow-x: hidden;
}

a#company-label{
    width: 100px;
    height: 100px;
}

a#company-label img{
    width: 100%;
    height: 100%;
    
}

a.nav-link{
    color: black;
    font-size: 14px;
}

li.navbar-items-color:hover{
    background: linear-gradient(90deg, rgb(71, 24, 224) , rgb(96, 95, 95),rgb(10, 195, 10));
    border-radius: 40px;
    transition: 1s;
    transition-property: background , color;

}

a.nav-link:hover{
    color: white;
}

form{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: right;
}

form input:not(:last-child){
    margin-bottom: 10px;
    background: linear-gradient(45deg, rgb(108, 179, 224), rgb(129, 217, 191));
    
}
form input{
    width: 400px;
}

form textarea{
    width :500px;
    margin-bottom: 10px;
    background: linear-gradient(45deg, rgb(108, 179, 224), rgb(129, 217, 191));
    
}

form input#submit{
    background: #24ff6d;
    border: none;
    width: 100px;
}
input#submit{
    border: 0;
    transition: 1s all ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

input#submit:hover{
    transform: scale(1.5 , 1.2);
  
}

.digital-clock{
    position:relative;
    top: 0;
    left: 0;
    transform: scale(0.8);  
    color: #fff;
    background: #2d2f41;
    width: 300px;
    height: 140px;
    padding: 20px 45px;
    box-shadow: 0 5px 25px rgba(14, 21, 37, 0.8);
    border-radius: 10px;
    /* display: flex;
    justify-content:flex-end; */
    align-items: center;
    /* flex-direction: column; */
    
   
}

.time{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hours, .dots, .minutes{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    padding: 0 10px;
    line-height: 100px;
}

.hours, .minutes{
    font-size: 2.5em;
    width: 45px;
    font-weight: 700;

}

.dots{
    font-size: 1.2em;
    color: #929292;
}

.hours{

    background: -webkit-linear-gradient(90deg, #634dff, #5fd4ff);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;

}

.minutes{
    background: -webkit-linear-gradient(90deg, #ff5e9a, #ffb960);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;

}

.right-side{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 10px;
}

.period, .seconds{
    font-size: 1em;
    font-weight: 500;

}

.period{
    transform: translateY(-20px);
    background: -webkit-linear-gradient(90deg, #f7b63f, #faf879);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.seconds{
    transform: translateY(16px);
    background: -webkit-linear-gradient(90deg, #24ff6d, #2f93f1);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;

}

.calendar{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 10px;
    font-size: 1em;
    font-weight: 400;
    background: -webkit-linear-gradient(90deg, #ae4af6, #ff98d1);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;

}

.calendar span:nth-child(1), .calendar span:nth-child(4){
   padding-right: 35px;
}

.calendar span:nth-child(2){
    padding-left: 30px;
 }

 .nav-clock{
    display: flex;
 }

 .login-image{
    display: flex;
    justify-content: center;
    align-items: center;
    
 }

 .login-image img{
    transform: translateX(50px);
    transition: all 2s ease;
    border-radius: 30px;
 }

 .login-image img:hover{
    transform: translateX(0px);
 }

.form{
    
}
.left{
    width: 50%;
    float: left;
}

.right{
    width: 50%;
    height: 80%;
    float: right;
}
.right img{
    object-fit: fill;
    margin-top: 50px;
    width: 100%;
    height:100%;
    border-radius: 25px;
    transform: translate(50px);
    transition: all ease 1s;
}
.form:hover img{
    transform: translate(0);
}
.clear{
    clear: both;
}