﻿
form{
    margin-top: 50px;
    transition: all 4s ease-in-out;
} 
.form-control{
    width: 600px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid gray;
    color: #ff0000;
    font-size: 18px;
    margin-bottom: 16px;
}

input{
    height: 45px;

}
form .submit{
    background-color: #ff5722;
    border-color: transparent;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    height: 50px;
    margin-top: 20px;
}

form .submit:hover{
    background-color: #f44336;
    cursor: pointer;
}

body, #slider, .wrap, .slide-content {
 margin: 0;
 padding: 0;
 font-family: 'Open Sans', sans-serif;
  width: 100%;
  height: 80vh;
  overflow-x: hidden;
}
.wrap{position: relative}

.slide{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide1{background-image: url('../images/slider/1.jpg')}
.slide2{background-image: url('../images/slider/2.jpg')}
.slide3{background-image: url('../images/slider/3.jpg')}

.slide-content{
    display: flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;
    text-align: center;
}

.slide-content span{
    font-size: 5rem;
    color: #ff0000;
}
.arrow{
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -35px;
    width: 0;
    height: 0;
    border-style: solid;
}
#arrow-left{
    border-width: 30px 40px 30px 0;
    border-color: transparent #ff0000 transparent transparent;
    left:0;
    margin-left:30px;
}

#arrow-right{
    border-width: 30px 0 30px 40px;
    border-color: transparent transparent transparent #ff0000;
    right:0;
    margin-right: 30px;
    
}