/* CSS for Life Insurance Calculator */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #000000, #d9e4f5);
    color: #333;
    text-align: center;
    padding: 50px;
}

h1 {
    color: #19FFFF;
}
/* Got CSS box-shadow idea from rgbcolorcode.com */
form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow:  -webkit-box-shadow: 5px 5px 15px 5px #FF8080, -9px 5px 15px 5px #FFE488, -7px -5px 15px 5px #8CFF85, 12px -5px 15px 5px #80C7FF, 12px 10px 15px 7px #E488FF, -10px 10px 15px 7px #FF616B, -10px -7px 27px 1px #8E5CFF, 5px 5px 15px 5px rgba(0,0,0,0); 
box-shadow: 5px 5px 15px 5px #FF8080, -9px 5px 15px 5px #FFE488, -7px -5px 15px 5px #8CFF85, 12px -5px 15px 5px #80C7FF, 12px 10px 15px 7px #E488FF, -10px 10px 15px 7px #FF616B, -10px -7px 27px 1px #8E5CFF, 5px 5px 15px 5px rgba(0,0,0,0);
    display: inline-block;
    margin-top: 20px;
}

label {
    display: block;
    margin: 15px 0 5px;
}

select, input[type="number"], input[type="color"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background: #19FFFF;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #357ab7;
}

p {
    margin-top: 20px;
}
