:root{
    --background-color-1: #121212;
    --background-color-2: #333333;

    --point-color-1: #FFD700;
}

.main{
    width: 1350px;
    height: auto;

    display: flex;
    justify-content: space-between;
}

.contents{
    width: 1050px;
    height: auto;

    padding-top: 30px;
    padding-bottom: 30px;

    margin-bottom: 50px;

    border: none;
    border-radius: 10px;

    background-color: #33333360;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.text{
    width: 900px;
    height: auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.text input{
    width: 420px;
    height: 40px;

    margin-bottom: 15px;
    padding-left: 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: 16px;

    transition: transform 0.5 ease;
}

.text input:focus{
    outline: none;
}

.text input:focus::placeholder{
    color: transparent;
}

.text input:hover{
    transform: scale(1.02);
}

.text textarea{
    width: 900px;
    height: 200px;

    line-height: 1.5;

    margin-bottom: 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: 16px;

    transition: transform 0.5 ease;

    resize: none;
}

.text textarea:focus{
    outline: none;
}

.text textarea:focus::placeholder{
    color: transparent;
}

.text textarea:hover{
    transform: scale(1.02);
}

.submit{
    width: 900px;
    height: auto;

    display: flex;
    justify-content: start;
}

.submit button{
    width: 160px;
    height: 50px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;

    /* background-color: rgba(255, 255, 255, 0.1); */
    background-color: transparent;

    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 500;

    cursor: pointer;
}

.submit button:hover{
    background-color: var(--point-color-1);
    color: black;
}