
#stacks_in_121633_page81 {
	padding: 30px 0px 30px 0px;
}
/* GLOBALS */

.main *,
.main *:after,
.main *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}


.register-form {
    /* Size and position */
    width: 280px;
    margin: 60px auto 30px;
    padding: 10px;
    position: relative;

    /* Font styles */
    color: #FCFCFC;
    
}

.register-form h1 {
    font-size: 22px;
    padding-bottom: 20px;
    color: #139DEB;
}



.register-form input[type=email],
.register-form input[type=text],
.register-form input[type=password] {
    /* Size and position */
    width: 100%;
    padding: 8px 4px 8px 10px;
    margin-bottom: 15px;

    /* Styles */
    border: none;
    border: 1px solid #4e3043; /* Fallback */
    border: 1px solid rgba(78,48,67, 0.8);
    background: #333333;
    background: transparent;
    border-radius: 2px;
    box-shadow: 
        0 1px 0 rgba(255,255,255,0.2), 
        inset 0 1px 1px rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    /* Font styles */
    color: #666666;
    font-size: 13px;
}

::-webkit-input-placeholder {
   color: #666666;
}

:-moz-placeholder { /* Firefox 18- */
   color: #666666;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #666666;
}

:-ms-input-placeholder {  
   color: #666666;
}

.register-form input[type=email]:hover {
    border-color: #333;
}

.register-form input[type=email]:focus,
.register-form input[type=text]:focus,
.register-form input[type=password]:focus,
.register-form input[type=submit]:focus {
    box-shadow: 
        0 1px 0 rgba(255,255,255,0.2), 
        inset 0 1px 1px rgba(0,0,0,0.1),
        0 0 0 3px rgba(255,255,255,0.15);
    outline: none;
}

/* Fallback */
.no-boxshadow .register-form input[type=email]:focus,
.no-boxshadow .register-form input[type=text]:focus,
.no-boxshadow .register-form input[type=password]:focus {
    outline: 1px solid white;
}

.register-form input[type=submit] {
    /* Size and position */
    width: 100%;
    padding: 8px 5px;
    
    /* Styles */
    background: #634056;
    background: -moz-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));
    background: -ms-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));
    background: -o-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));
    background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(99,64,86,0.5)), to(rgba(76,49,65,0.7)));
    background: -webkit-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));
    background: linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));    
    border-radius: 5px;
    border: 1px solid #4e3043;
    box-shadow: inset 0 1px rgba(255,255,255,0.4), 0 2px 1px rgba(0,0,0,0.1);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    /* Font styles */
    color: #FFFFFF;
    
    font-size: 16px;
    font-weight: bold;
}

.register-form input[type=submit]:hover {
    box-shadow: 
        inset 0 1px rgba(255,255,255,0.2), 
        inset 0 20px 30px rgba(99,64,86,0.5);
}


/* Button Styles */
/* Button 1 */



/* Button Styles */
/* Button 2 */


.register-form input[type=submit] {
    /* Styles */
    box-shadow: none;
    
    background: #34a5cf; /* Fallback */
    background: -moz-linear-gradient(#34a5cf, #2a8ac4);
    background: -ms-linear-gradient(#34a5cf, #2a8ac4);
    background: -o-linear-gradient(#34a5cf, #2a8ac4);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#34a5cf), to(#2a8ac4));
    background: -webkit-linear-gradient(#34a5cf, #2a8ac4);
    background: linear-gradient(#34a5cf, #2a8ac4);
    border: 1px solid #2b8bc7;
    text-shadow: 0 -1px rgba(0,0,0,0.3);
}

.register-form input[type=submit]:hover {
    box-shadow: 
           inset 0 1px rgba(255,255,255,0.3), 
           inset 0 20px 40px rgba(255,255,255,0.15);
}



/* Button Styles */
/* Button 3 */




/* Button Styles */
/* Button 4 */




.register-form label {
    display: none;
    padding: 0 0 5px 2px;
    cursor: pointer;
}

.register-form label:hover ~ input {
    border-color: #333;
}

.no-placeholder .register-form label {
    display: block;
}

