/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 13 Jul, 2020, 8:25:56 PM
    Author     : user
*/

.landing-page{
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    resize: both;
    overflow: auto;
    min-width: 50px; /*suggest a min-width &amp; min-height*/
    min-height: 50px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,207cca+34,207cca+34,2989d8+62,7db9e8+100 */
    background: #1e5799; /* Old browsers */
    background: -moz-linear-gradient(left,  #1e5799 0%, #207cca 34%, #207cca 34%, #2989d8 62%, #7db9e8 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #1e5799 0%,#207cca 34%,#207cca 34%,#2989d8 62%,#7db9e8 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #1e5799 0%,#207cca 34%,#207cca 34%,#2989d8 62%,#7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=1 ); /* IE6-9 */
    color:#FFF;
    margin-top:10%;
    min-height: 400px;
}
.reg-form{
    -webkit-transition: height 500ms ease-in;
    -moz-transition: height 500ms ease-in;
    -ms-transition: height 500ms ease-in;
    -o-transition: height 500ms ease-in;
    transition: height 500ms ease-in;
}

.reg-form input{
    border:none;
    border-radius: 0px;
    border-bottom:solid 1px #FFF;
    background: transparent;
    color:#FFF;
    text-transform: uppercase;
}
.reg-form button{
    
    background:transparent;
    font-size:20px;
    color:#FFF;
    border:solid 1px #EEE;
    padding:8px;
    border-radius: 5px;
    width:200px;
}
.reg-form button:focus, .reg-form button:hover{
    background: #002266;
    color:#FFF;
}