/*==================

TABLE OF CONTENTS

01. Fonts
02. Global

==================*/



/*--------------------------
01. FONTS
----------------------------*/
@font-face {
    font-family: 'proxima_nova_ththin';
    src: url('../fonts/ProximaNova-Thin.eot');
    src: url('../fonts/ProximaNova-Thin.eot?#iefix') format('embedded-opentype'),
         url('../fonts/ProximaNova-Thin.woff') format('woff'),
         url('../fonts/ProximaNova-Thin.ttf') format('truetype'),
         url('../fonts/ProximaNova-Thin.svg#proxima_nova_ththin') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'proxima_nova_ltlight';
    src: url('../fonts/ProximaNova-Light.eot');
    src: url('../fonts/ProximaNova-Light.eot?#iefix') format('embedded-opentype'),
         url('../fonts/ProximaNova-Light.woff') format('woff'),
         url('../fonts/ProximaNova-Light.ttf') format('truetype'),
         url('../fonts/ProximaNova-Light.svg#proxima_nova_ltlight') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'proxima_nova_rgregular';
    src: url('../fonts/ProximaNova-Reg.eot');
    src: url('../fonts/ProximaNova-Reg.eot?#iefix') format('embedded-opentype'),
         url('../fonts/ProximaNova-Reg.woff') format('woff'),
         url('../fonts/ProximaNova-Reg.ttf') format('truetype'),
         url('../fonts/ProximaNova-Reg.svg#proxima_nova_rgregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'proxima_nova_ltsemibold';
    src: url('../fonts/ProximaNova-Sbold.eot');
    src: url('../fonts/ProximaNova-Sbold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/ProximaNova-Sbold.woff') format('woff'),
         url('../fonts/ProximaNova-Sbold.ttf') format('truetype'),
         url('../fonts/ProximaNova-Sbold.svg#proxima_nova_ltsemibold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'proxima_nova_rgbold';
    src: url('../fonts/ProximaNova-Bold.eot');
    src: url('../fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/ProximaNova-Bold.woff') format('woff'),
         url('../fonts/ProximaNova-Bold.ttf') format('truetype'),
         url('../fonts/ProximaNova-Bold.svg#proxima_nova_rgbold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'proxima_nova_blblack';
    src: url('../fonts/ProximaNova-Black.eot');
    src: url('../fonts/ProximaNova-Black.eot?#iefix') format('embedded-opentype'),
         url('../fonts/ProximaNova-Black.woff') format('woff'),
         url('../fonts/ProximaNova-Black.ttf') format('truetype'),
         url('../fonts/ProximaNova-Black.svg#proxima_nova_blblack') format('svg');
    font-weight: normal;
    font-style: normal;
}




/*--------------------------
02. GLOBAL
----------------------------*/
html{height:100%;}

body{
    color: #2e2e2e;
    font-family: 'proxima_nova_rgregular', Arial, sans-serif;
    padding: 0;
    margin: 0;
    background-image: url('https://www.paulmitchell.com/media/531392/colored-out-of-focus-background.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #e8e5e0;
    background-size: auto 100%;
}

.tag{
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

#confirm .text{
    display: inline-block;
    vertical-align: middle;
    line-height: 120%;
}

h1{
    font-family: 'proxima_nova_blblack';
    font-size: 2.25em;
    text-transform: uppercase;
    text-align: center;
}

p, input, textarea, a{
    font-size: .875em;
    line-height: 20px;
    margin: 5% auto;
    width: 90%;
    padding: 2% 5%;
    border: 0;
}

p{
    text-align: center;
}

p.or{
    margin: 2% auto;
}

input, textarea{
    font-family: 'proxima_nova_rgregular', Arial, sans-serif;
    display: block;
    border-radius: 3px;
}

input#url{
    margin: 7% auto 2%;
}



input#pic{
    width: 100%;
    padding: 2% 0;
    margin: 2% auto 7%;
}

textarea{
    height: 100px;
}

a{
    font-family: 'proxima_nova_rgbold', Arial, sans-serif;
    color: #2e2e2e;
    background: transparent;
    border-radius: 3px;
    display: block;
    width: 100px;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: solid 1px #2e2e2e;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover, a:focus{
    background: #2e2e2e;
    color: #fff;
}

a:active{
    position: relative;
    top: 3px;
}


