﻿#image {
    /*margin-top: 10px;*/
    /*box-shadow: 5px 5px 5px 5px #c3c3c3;*/
    width: 130px;
    /* padding: 20px;*/
    font-weight: 400;
    padding-bottom: 0px;
    height: 40px;
    user-select: none;
    text-decoration: line-through;
    font-style: italic;
    font-size: x-large;
    border: black 1px solid;
    /*border: none;*/
    margin-left: 10px;
}

#user-input {
    /*box-shadow: 5px 5px 5px 5px #c3c3c3;*/
    /*width: auto;
    margin-right: 10px;
    padding: 10px;
    padding-bottom: 0px;
    height: 45px;
    border: red 0px solid;*/
    margin-top: 1%;
    position: relative;
}

input {
    border: 1px black solid;
}

.inline {
    display: block;
    cursor: pointer;
    margin-left: 2%;
}

#btn {
    box-shadow: 5px 5px 5px grey;
    color: aqua;
    margin: 10px;
    background-color: brown;
}
#rbSubmit {
    margin-left: 10px;
}

/*
    Input behavior
*/
#user-input input[type="text"] {
    border: 1px solid #ccc;
    padding: 10px;
    width: 200px;
    transition: all 0.3s;
    position: relative;
}

    #user-input input[type="text"]:focus,
    #user-input input[type="text"]:not(:placeholder-shown) {
        border-color: #007bff;
    }

    #user-input input[type="text"]::placeholder {
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
        font-size: 12px;
        color: #aaa;
        transition: all 0.3s;
    }

    #user-input input[type="text"]:focus::placeholder,
    #user-input input[type="text"]:not(:placeholder-shown)::placeholder {
        top: 0;
        transform: translateY(0);
        font-size: 10px;
    }
