/**
 * CloudSend
 *
 * @package    CloudSend
 * @author     codingking.co
 * @copyright  Copyright (c) 2013 codingking.co - all rights reserved
 * @license    Commercial
 * @link       http://www.codingking.co/
 * 
 * 
 * This source file is distributed in the hope that it will be useful, but 
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
 * or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.
 */

 /**
  * Standard Definitions
  */
 body {
     font-family: 'OpenSansRegular';
     font-weight: normal;
     color: #333333;
 }
 
 strong {
     font-family: 'OpenSansBold';
     font-weight: normal;
 }

 /**
  * Login Box
  */
  
 #login {
     background-color: #D44413;
     color: #FFFFFF;
     width: 300px;
     position: absolute;
     bottom: 0;
     right: 12%;
     padding: 30px 15px 50px 15px;
 }
 
 #login .header h3 {
     font-size: 38px;
     letter-spacing: -1px;
     font-weight: bold;
     padding-bottom: 20px;
     line-height: 1.0em;
 }
 
 #login .header h3 small {
     display: block;
     font-size: 28px;
     font-weight: normal;
 }
 
 #login input[type=password] {
     border: none;
     width: 290px;
     height: 30px;
     padding: 5px;
     font-size: 30px;
 }
 
 #login button {
     width: 150px;
     height: 30px;
     margin-top: 30px;
     background: none;
     border: 1px solid #FFFFFF;
     color: #FFFFFF;
     font-size: 18px;
     padding-bottom: 5px;
 }
 
 #login button:hover {
     border: 1px solid #999999;
 }
 
 #login .alert {
     padding-bottom:20px;
 }
 
/**
 * Error not found!
 */
 
 #errornotfound {
     width: 550px;
     margin: 0 auto;
     background-color: #D44413;
     color: #FFFFFF;
     padding: 10px 20px 20px;
     margin-top: 130px;
 } 