:root{
    --background-color-1: #121212;
    --background-color-2: #333333;

    --point-color-1: #FFD700;
}

.contents{
    width: 80%;
    height: auto;

    border: none;
    border-radius: 10px;

    background-color: #33333360;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text{
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.text input{
    width: 230px;
    height: 30px;

    padding-left: 15px;

    margin-top: 15px;

    border: 1px solid;
    border-color: transparent;
    border-radius: 8px;

    background-color: rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.text input:focus{
    outline: none;
}

.text input:focus::placeholder{
    color: transparent;
}

.text textarea{
    width: 230px;
    height: 150px;

    line-height: 1.5;

    margin-bottom: 15px;
    margin-top: 15px;

    padding-left: 15px;
    padding-top: 15px;

    border: none;
    border-radius: 8px;

    background-color: rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;

    resize: none;
}

.text textarea:focus{
    outline: none;
}

.text textarea:focus::placeholder{
    color: transparent;
}

.submit{
    width: 100%;

    display: flex;
    justify-content: center;
}

.submit button{
    width: 100px;
    height: 40px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;

    background-color: #FFD700;

    color: black;
    font-size: 16px;
    font-weight: 500;

    margin-bottom: 15px;
}