*, *::before, *::after {
  margin: 0;
  padding: 0;
}

a {
    text-decoration: none;
}


.content {
    display: flex;
    flex-direction: row;
    align-items: left;
    justify-content: left;
    height: 100vh;
}
.left {
    width: 90%;
    height: 100%;
    background-image: url('../images/signin.png');
    background-size: cover; /* Agar gambar menyesuaikan ukuran layar */
    background-position: center; /* Pusatkan gambar */
    background-repeat: no-repeat;
    display: flex;
    align-items:first baseline;
    justify-content: left;
}
body {
    left: 0;
    overflow-x: hidden;
    background-color: #ffffffb3;
}
.right {
    width: 30%;
    display: flex;
    justify-content: center;
}
img {
    margin-top: 10px;
    margin-left: 50px;
    width: 200px;
}


.container{
    animation: formDelay 2s forwards;
    width:1000px;
    font-family: "Nunito Sans", sans-serif;
    margin-right: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.container h1{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 200;
    opacity: 80%;
    font-size: 35px;
    color: #000;
}
.container h2{
    font-family: "Nunito Sans", sans-serif;
    font-weight: 100;
    font-size: 15px;
    opacity: 50%;
    padding-bottom: 10px;
}

input{
    width:100%;
    background-color:transparent;
    padding-left:10px;
    height: 35px;
    border: 1px solid #000;
    border-radius: 10px;
    outline: none;
    font-size:13px;
    margin: 5px;
}

input::placeholder{
  text-align: left;
}

.btn{
    border-radius:15px;
    font-size: 20px;
    font-family: "Bebas Neue", sans-serif;
    background:rgb(49, 49, 49);
    color:#ffffff;
    cursor:pointer;
    transition:0.9s;
    border: none;
    margin-top: 20px;
}
.btn:hover{
    background:#5d5d5d;
}


.links{
    padding-top: 20px;
    font-size: 15px;
    color: #777777;
    padding-right: 50px;
}
.links .have{
    padding-right: 20px;
}

.have a{
    font-family: "Bebas Neue", sans-serif;
    border:none;
    color: rgb(49, 49, 49);
    background-color:transparent;
    font-weight:200;
    font-size: 15px;
    cursor: pointer;
}
.have a:hover{
    color:rgb(131, 131, 131);
}


textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid rgb(0, 0, 0);
    background-color: transparent;
    color: #000000;
    border-radius: 10px;
    resize: none;
}
textarea::placeholder{
    text-align: left;
}

textarea::-webkit-scrollbar {
    display: none;
}
.addressGender{
    display: flex;
}

.genderCat {
    margin: 5px;
    width: 100%;
}
select.genderCat option.unselected {
    color: rgb(255, 255, 255);
}
select.genderCat option:not(.unselected) {
    color: rgb(255, 255, 255);
}
select.genderCat {
    background-color: transparent; /* Hitam transparan */
    border: 1px solid rgb(0, 0, 0);
    padding: 8px;
    border-radius: 8px;
    appearance: none; /* Menghilangkan default style bawaan browser */
    -webkit-appearance: none;
    -moz-appearance: none;
   
}
select.genderCat option:checked {
    background-color: #313131;
}

/* Saat dropdown dibuka */
select.genderCat:focus {
    background-color: transparent; /* Lebih gelap saat dibuka */
    outline: none;
}

/* Style untuk opsi dalam select */
select.genderCat option {
    background-color: rgb(47, 44, 44);
    
}
select {
    display: flex;
    text-align: center;
    color: #888888;
}

.addressGender{
    display: flex;
    flex-direction: row;
    gap: 25px;
    width: 100%;
}