/* *{
    border: 2px solid rgb(255, 255, 255);
} */
body {
    background: linear-gradient(90deg, #000000 , #012250); 
    color: rgb(0, 0, 0);
    font-family: "Lucida Console", "Courier New", monospace;
    margin: 0;
    padding: 0;
    opacity: 1;
}   

.input-container{
    margin: 100px auto;
    height: auto;
    max-width: 1000px;
    width: 80%;
    background-color: #000000;
    border-radius: 25px;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
}
.form-container{
    width: 80%;
    display: flex;
    flex-direction: column;
    padding: 20px 20px;

}

.form-container input{
    margin: 15px 0;
    padding: 10px;
    border-radius: 10px;
    font-family: 'Courier New', Courier, monospace;
    width: 100%;
    box-sizing: border-box; 
    border: 2px solid #000000;
    
    
}
.form-container textarea{
    margin: 15px 0;
    padding: 10px;
    border-radius: 10px;
    font-family: 'Courier New', Courier, monospace;
    resize: none;
    box-sizing: border-box;
    width: 100%;
    height: auto;    
    border: 2px solid #000000
    
}

.form-container button{
    margin: 15px 0;
    padding: 10px;
    border-radius: 10px;
    font-family: 'Courier New', Courier, monospace;
    width: 100%;

    box-sizing: border-box;
    background-color: #ffffff;
    color: #000000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.5s;
    border: 2px solid rgb(0, 0, 0);

}
.form-container button:hover{
    transform: scale(1.1);
    color: #ffffff;
    background-color: #000000;
    border: #ffffff 2px solid;
}
.cursor{
    cursor: pointer;
}