/* GENERAL STYLING STARTS */
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: 'Poppins';
	scroll-behavior: smooth;
    background-color: #161616;
    color: #FFF8DC;
}
.hidden{
    display: none;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.mycontainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
}
/* GENERAL STYLING ENDS */

/* SING IN STYLING STARTS */
.sign-in{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sign-in hr{
    height: 2px;
    border: 2px solid #606C38;
    border-radius: 2px;
    background: #606C38;
    width: 70%;
    margin: 10px 0px 20px 0px;
}
.sign-in h2{
    color: #606C38;
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0px 5px 0px;

}
.sign-in .title{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #161616;
    margin: 5px 0px 5px 0px;
}
.sign-in .title h1{
    background-clip: unset;
	background: -webkit-linear-gradient(0deg, rgba(96,108,56,1) 0%, rgba(176,208,68,1) 100%);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 50px;
    margin: 0px;
}
.sign-in .title img{
    background-color: #606C38;
    border-radius: 100%;
    padding: 10px;
    height: 30px;
}
form input{
    border-radius: 5px;
    background-color: #FFF8DC;
    border: none;
    padding: 8px;
    border-bottom: #606C38 solid 2px;
    border-right: #606C38 solid 2px;
}
form button{
    border-radius: 5px;
    background-color: rgba(176,208,68,1);
    color: #161616;
    border: none;
    padding: 8px;
    border-bottom: #606C38 solid 3px;
    border-right: #606C38 solid 3px;
}

/* SING IN STYLING ENDS */

/* RIDER IN STYLING STARTS */
.sub-header{
    margin: 30px 0px 30px 0px;
}
.sub-header h2{
    font-size: 26px;
    color: #606C38;
    font-weight: 500;
}
.rider{
    display: flex;
    flex-direction: column;
}
.rider form{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ride-icons{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.ride-icons p,img{
    margin: 10px 5px 40px 5px;
}
