﻿.TextBoxStyle
{
    width: 250px;
    height: 24px;
    padding: 3px 3px 3px 12px;
    border: 1px solid #B9B3B3;
    box-shadow: 2px 2px 2px #A39B9B;
    border-radius: 5px;
    text-shadow: 1px 1px 2px #918282;
    background: #F2FFE8;
}

.TextAreaStyle
{
    height: 103px;
    width: 250px;
    padding: 3px 3px 3px 12px;
    border: 1px solid #B9B3B3;
    box-shadow: 2px 2px 2px #A39B9B;
    border-radius: 5px;
    text-shadow: 1px 1px 2px #918282;
    background: #F2FFE8;
    resize: none;
}

.BtnStyle
{
    width: 120px;
    height: 25px;
    background: rgb(255, 211, 131);
    border: 1px solid orange;
    border-radius: 7px;
    box-shadow: 2px 2px 4px #94DB7D;
}

.BtnStyle:hover
{
    cursor:pointer;
}

.LblStyle
{
    font-family: cursive;
    text-shadow: 1px 1px 7px #918282;
    font-size: 14px;
}

.ddlStyle
{
    width: 265px;
    height: 25px;
    padding: 3px 3px 3px 12px;
    border: 1px solid #B9B3B3;
    box-shadow: 2px 2px 2px #A39B9B;
    border-radius: 5px;
    text-shadow: 1px 1px 2px #918282;
    background: #F2FFE8;
}