/**
 *  css/message.css
 *
 *  @name   message
 *  @author Andris Bratka 2014 <stringz@inbox.lv>
 */

/* SUBSCRIBE LAYOUT ELEMENTS
/* ----------------------------------------- */

html, body {
    background: transparent;
    overflow: hidden;
    }

body {
    color: #333;
    font-family: arial, sans-serif;
    font-size: 12px;
    padding: 30px 30px 100px;
    }

#main {
    background: #FFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    padding: 30px;
    }

#main h3 {
    font-size: 20px;
    margin: 0 0 20px;
    text-transform: uppercase;
    }

#main p {
    line-height: 20px;
    margin: 20px 0;
    }

#main div.row {
    margin-top: 12px;
    overflow: hidden;
    }

/* MESSAGE FORM
/* ----------------------------------------- */

#main form {
    margin: 0;
    padding: 0 0 10px;
    position: relative;
    }

#main input, #main textarea {
    background: none;
    border: none;
    font-family: arial, sans-serif;
    font-size: 13px;
    }

#main label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    }

#main div.input div.wrap {
    background: #E5E5E5;
    border: 1px solid #E5E5E5;
    padding: 5px 8px;
    }

#main div.text input {
    width: 210px;
    }

#main div.textarea textarea {
    height: 80px;
    line-height: 18px;
    resize: none;
    width: 100%;
    }

#main div.submit {
    bottom: -50px;
    position: absolute;
    }

#main div.submit input {
    background: #FFEC00;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 20px;
    }

#main div.submit input:hover {
    background: #FFFF00;
    }

/* MESSAGE FORM ERRORS
/* ----------------------------------------- */

#main div.error div.wrap {
    background: #FFECEC;
    border: 1px solid #FF9797;
    }

#main div.error div.error-message {
    color: #FF4646;
    font-size: 11px;
    margin-top: 5px;
    line-height: 18px;
    }

/* SUCCESS MESSAGE
/* ----------------------------------------- */

#main div.success-message {
    background: #F4FFF4;
    border: 1px solid #E3EEE9;
    color: #008040;
    line-height: 20px;
    text-align: center;
    padding: 20px;
    }

a.unsubscribe {
    color: #B9005C;
    text-decoration: none;
    text-transform: uppercase;
    }

a.unsubscribe:hover {
    color: #B9005C;
    text-decoration: underline;
    }

/* remove border around all input elements */
input:focus {
    outline: none;
}

/* remove border around all textarea elements */
textarea:focus {
    outline: none;
}

/* remove border around all select elements */
select:focus {
    outline: none;
}

/* remove border around all input,textarea and select elements */
input:focus, textarea:focus, select:focus {
    outline: none;
}

/* remove border around all elements */
:focus {
    outline: none;
}