body {
    color: white;
    font-family: Arial, sans-serif;
    background-color: #000000;
    
}
.cont{
width: 100%;
height: calc(100vh - 100px);
min-height: 600px;
display: flex;
flex-direction: row;
margin-top: 30px;
}
.form-container {
    width: calc(55% - 80px);
    min-height: fit-content;
    height: fit-content;
    margin-left: 40px; 
    margin-right: 40px;
    border-radius: 10px;
    background-color: #000000; 
}
.dec{
    width: calc(100% - 20px);
}
.textcont{
    width: 45%;
    padding:0px 30px ;
}
h1 {
    color: #35d779;
    margin-bottom: 10px; 
}

p {
    color: #ccc;
    margin-top: 40px;
    margin-bottom: 20px; 
    line-height: 1.5;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: none;
    margin: 10px 0px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-bottom: 2px solid #ccc;
    font-size: 14px;
    transition: border-color 0.3s;
    outline: none;
    background-color: transparent;
    color: #ccc;
    resize: none;
  overflow: auto;
}

input::placeholder, textarea::placeholder {
    color: #ccc;
}

input:focus{
    border-bottom-color: #35d779;
    color: #fff;
}
textarea:focus {
    border: 2px solid #35d779;
    color: #fff;
}

.cent {
    width: 100%;
    height: 30px;
    position: relative;

}
textarea {
    overflow-x: hidden;
}
textarea {
    overflow-y: scroll;
}

textarea::-webkit-scrollbar {
    width: 5px;
}

textarea::-webkit-scrollbar-track {
    background: #000;
}

textarea::-webkit-scrollbar-thumb {
    background: #fff;
    
}

textarea::-webkit-scrollbar-thumb:hover {
    background: #35d779; 
}

input:-webkit-autofill {
    background-color: #ff000000 !important; 
    color: #ffffff !important; 
    -webkit-box-shadow: 0 0 0px 0px #6e6e6e00 ;
    transition: background-color 5000s,color 5000s ease-in-out 0s;
}

.form-select {
    padding: 10px;
    border: none;
    border-bottom: 2px solid #ccc;
    font-size: 14px;
    background-color: transparent;
    color: #ccc;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

label {
    color: #ccc;
    font-size: 14px;
    margin: 20px 10px;
    font-weight: bold;
}

.form-select:focus {
    border-bottom-color: #35d779;
    color: #fff;
}

.form-select option {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    border-radius: 0px !important;
    border: 2px solid #35d779;
    outline: none !important;
}

.form-select::placeholder {
    color: #fefefe;
}

.form-select {
    position: relative;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE0IDgiIGZpbGw9IiM3NzkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEgMUw3IDdsNi02IiBzdHJva2U9IiM3NzkiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIvPjwvc3ZnPg==');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
}
@media (max-width: 900px) {
    .cont{
        flex-direction: column;
        height: fit-content;
        justify-content: start;
        align-items: center;
        min-height:800px;
    }
    .form-container{
        width: calc(100% - 50px);
        padding-right: 0px; 
        height: fit-content;
    }
    .textcont{
        width: calc(100% - 60px);
        height: fit-content;
        padding:0px 30px ;
    }
    p{
        margin: 0px;
    }
    h1{
        margin-left: 0px;
    }
    .dec{
        width: calc(100% - 25px);
    }
}
.learnmore {
    display: inline-flex;
    align-items: center;
    padding: 10px;
    background-color: #35d779;
    margin-top: 40px;
    color: #000;
    text-decoration: none;
    position: absolute;
    right: 0px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;

}

.learnmore:hover {
    background-color: #ffffff;
}
.caret {
  margin-left: 20px;
  transition: transform 0.3s ease;
  font-size: 18px;
  font-weight: bold;
  
}

.learnmore:hover .caret {
  transform: rotate(180deg);
}
