﻿/*-- reset --*/
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, dl, dt, dd, ol, nav ul, nav li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, 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, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*-- start editing from here --*/
a {
    text-decoration: none;
}

.txt-rt {
    text-align: right;
}

.txt-lt {
    text-align: left;
}

.txt-center {
    text-align: center;
}

.float-rt {
    float: right;
}

.float-lt {
    float: left;
}

.clear {
    clear: both;
}

.pos-relative {
    position: relative;
}

.pos-absolute {
    position: absolute;
}

.vertical-base {
    vertical-align: baseline;
}

.vertical-top {
    vertical-align: top;
}

nav.vertical ul li {
    display: block;
}

nav.horizontal ul li {
    display: inline-block;
}

img {
    max-width: 100%;
}

/*-- end reset --*/
body {
    background: #0066cc; /* blue gradient background */
    background: -webkit-linear-gradient(to top, #0066cc, #00b0ff); /* for Safari */
    background: -moz-linear-gradient(to top, #0066cc, #00b0ff); /* for Firefox */
    background: -o-linear-gradient(to top, #0066cc, #00b0ff); /* for Opera */
    background: linear-gradient(to top, #0066cc, #00b0ff); /* modern browsers */
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-size: 3.5em;
    text-align: center;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 4px;
    font-family: 'Roboto', sans-serif;
}

/*-- main --*/
.main-w3layouts {
    padding: 3em 0 1em;
}

.main-agileinfo {
    width: 40%;
    margin: 3em auto;
    background: rgba(0, 0, 0, 0.3); /* darkened background */
    border-radius: 15px; /* rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* soft shadow */
}

.agileits-top {
    padding: 3em;
}

input[type="text"], input[type="email"], input[type="password"] {
    font-size: 1em;
    color: #fff;
    font-weight: 300;
    width: 94.5%;
    display: block;
    border: none;
    padding: 0.8em;
    border: solid 1px rgba(255, 255, 255, 0.37);
    transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #fff 4%);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    border-radius: 8px; /* rounded inputs */
}

input[type="submit"] {
    font-size: 1.1em;
    color: #fff;
    background: #0099cc; /* blue button */
    outline: none;
    border: 1px solid #0099cc;
    cursor: pointer;
    padding: 0.9em;
    width: 100%;
    margin: 2em 0;
    letter-spacing: 4px;
    border-radius: 8px; /* rounded button */
}

    input[type="submit"]:hover {
        background: #00b0ff; /* lighter blue on hover */
        transition: .5s all;
    }

/* Form placeholder styles */
.text:focus, .text:valid {
    box-shadow: none;
    outline: none;
    background-position: 0 0;
}

    .text:focus::-webkit-input-placeholder, .text:valid::-webkit-input-placeholder {
        color: rgba(255, 255, 255, 0.7);
        font-size: .9em;
        transform: translateY(-30px);
        visibility: visible !important;
    }

::-webkit-input-placeholder {
    color: #fff;
}

:-moz-placeholder {
    color: #fff;
}

::-moz-placeholder {
    color: #fff;
}

:-ms-input-placeholder {
    color: #fff;
}

/*-- checkbox --*/
.wthree-text label {
    font-size: 1em;
    color: #fff;
    font-weight: 300;
    cursor: pointer;
    position: relative;
}

input.checkbox {
    background: #00b0ff;
    cursor: pointer;
    width: 1.5em;
    height: 1.5em;
}

    input.checkbox:checked:after {
        transform: rotate(-45deg);
        height: .5rem;
        border-color: #fff;
    }

/*-- copyright --*/
.colorlibcopy-agile {
    margin: 2em 0 1em;
    text-align: center;
}

    .colorlibcopy-agile p {
        font-size: .9em;
        color: #fff;
        line-height: 1.8em;
        letter-spacing: 1px;
        font-weight: 100;
    }

        .colorlibcopy-agile p a {
            color: #fff;
            transition: 0.5s all;
        }

            .colorlibcopy-agile p a:hover {
                color: #000;
            }

/*-- Wrapper and Bubbles --*/
.wrapper {
    position: relative;
    overflow: hidden;
}

.colorlib-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

    .colorlib-bubbles li {
        position: absolute;
        list-style: none;
        display: block;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.15);
        bottom: -160px;
        animation: square 20s infinite;
        border-radius: 50%;
    }

/* Animation for bubbles */
@keyframes square {
    0% {
        transform: translateY(0) rotate(0);
    }

    100% {
        transform: translateY(-700px) rotate(600deg);
    }
}
