/*
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 : Jul 17, 2016, 5:26:58 PM
    Author     : user
*/

/***** Content *****/

.subscribe {
/*    margin-top: 30px;
    text-align: center;*/
}

.subscribe h3 {
/*    font-size: 32px;
    font-weight: 400;
    color: #4d4d4d;
    line-height: 40px;
    text-transform: uppercase;
    text-shadow: 1px 2px 1px #fff;*/
}

.subscribe p {
/*    font-size: 18px;
    font-weight: 400;
    line-height: 36px;*/
}

.subscribe form {
    margin-top: 24px;
}

.subscribe form input.subscribe-email {
    width: 310px;
    height: 46px;
    margin: 0;
    padding: 0 10px;
    background: #fff;
/*    font-family: 'Lato', sans-serif;*/
    font-family: RimowaText-Regular;
    font-size: 18px;
    line-height: 46px;
    color: #888;
    border: 0;
    -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.15);
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.15);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.15);
}

.subscribe form input:focus {
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.15);
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.15);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.15);
}

.subscribe form input:-moz-placeholder { color: #888; }
.subscribe form input:-ms-input-placeholder { color: #888; }
.subscribe form input::-webkit-input-placeholder { color: #888; }

.subscribe form button {
    width: 130px;
    height: 46px;
    margin: 0;
    padding: 0;
    background: white;
    
    font-family: RimowaText-Regular;
    font-size: 18px;
    /*line-height: 46px;*/
    border: 2px solid #555555;
    color: black;
    text-transform: uppercase;
    /*text-shadow: 1px 1px 1px rgba(0,0,0,.3);*/
    -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.25);
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.25);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.25);
    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
}

.subscribe form button.btn:hover {
    background-color: #CCCCCC;
    border: 2px solid #CCCCCC;
    color: white;
}

.subscribe form button.btn:focus, .subscribe form button.btn:active {
    outline: 0;
    background: #555;
    color: #fff;
}

.error-message {
    color: red;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.success-message {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}