/* Styles for SMS Signup */


#sms-signup-form-container{
    position:relative;
    width:360px;
    min-height:50px;
    padding-top: 5px;
    text-align: center;
    margin:0px auto 0px auto;
    background-color: black;
    opacity: .9;
    left:50%;
    margin-left:-180px;
}

input[name='phone']{
    background-color: wheat;
    height:30px;
    font-size: 24px;
    text-align:center;
    width:200px;
    color:#000;
    font-weight: bold;
}

.smss-white{
    color: white;
}

/* jQuery keypad */
.keypad button {
    margin: 1%;
    width: 30%;
    height: 21%;
    background: #eee;
    border: 2px solid black;
    border-radius: 10px;
    font-size: 3em;
}

.keypad button{
    height:80px;
}

.keypad button.number{
    background-color: #ffa600;
    color:#000;
}

.keypad button.delete{
    background-color: #660000;
    color: #FFF;
    text-align: center;
    font-size:2.0em;
    padding:0;
}

.keypad button.submit{
    background-color: #006600;
    color: #FFF;
    text-align: center;
    font-size:2.0em;
    padding:0;
}

/* Diagnostic box */
#diag{
    position: relative;
    width:600px;
    min-height: 400px;
    background-color: bisque;
}

div#sms-signup-form-container, div#keypad{
    max-height:500px;
}