
.main-container {
  display: flex;
  flex-direction: row;
  height: 100%;
  padding: 0;
}

.content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
}

.title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255,255,255);
  font-family: Inter, sans-serif;
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 50px;
}

.form-card {
  display: flex;
  flex-direction: column;

  height: fit-content;
  width: fit-content;
  background: rgba(30, 0, 255, 0.5);
  border-radius: 25px;
  padding: 20px;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  height: fit-content;
  width: fit-content;
  border-radius: 25px;
  padding: 20px;
  gap: 20px;
}

.greeting {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255,255,255);
  font-family: Inter, sans-serif;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 0;
}

.input-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  height: fit-content;
  gap: 20px;
}

.input-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 45px;
  width: 400px;
  border-radius: 12px;
  background: transparent;
  border: 2px solid #0048FF;
  color: #fff;
  padding: 5px;
}

.label {
    display: flex;
    align-items: center;
    width: 300px;
    height: 27px;
    background: rgba(32, 32, 32, 0);
    color: #256FC3;
    user-select: none;
}

.register-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 400px;
    border-radius: 12px;
    background-color: #0048FF;
    border: 2px solid #0048FF;
    color: #fff;
    transition: background-color .5s ease, border .5s ease;
    cursor: pointer;
    font-size: 20px;
}

.register-btn:hover{
    background-color: #00FF6F;
    border: 2px solid #00FF6F;
    transition: background-color .5s ease, border .5s ease;
}

.register-btn span {
    width: auto;
    height: auto;
    background: rgba(32, 32, 32, 0);
    color: #fff;
}

.login-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 400px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid #0048FF;
    color: #fff;
}



.login-link span {
  width: 300px;
  height: 27px;
  background: rgba(32, 32, 32, 0);
}

.login-here {
  text-decoration: none;
    font-weight: bold;
  color: #00FF6F;
}




.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
}

.error {
    color: red;
    font-size: 0.9em;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.custom-file-upload {
    position: relative;
    display: inline-block;
}

.custom-file-input {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;

    cursor: pointer;
    z-index: 2;
}


.custom-file-label {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0048FF;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    width: 400px;
    height: 45px;
    
}


.file-name {
    display: block;
    margin-top: 5px;
    color: #666;
}


.mb-3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mb-3 label {
    color: #256FC3;
    font-size: 14px;
    font-weight: 500;
}

.mb-3 input,
.mb-3 select {
    height: 45px;
    width: 400px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid #0048FF;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
}

.mb-3 input:focus,
.mb-3 select:focus {
    outline: none;
    border-color: #00FF6F;
}

@media (max-width:768px){
    .main-container, .content, .form-wrapper, .form-card, .input-section, .form-field, .mb-3 input, .register-btn, .custom-file-label, .login-link{
        width: 100%;
    }
    .login-link{
        font-size: 14px;
    }
    .form-wrapper{
        padding: 0 10px ;
    }
}
