.register-page {
    max-width: 600px;
    margin: 80px auto 0;
    padding: 2rem;
}

.register-page h1 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

#register-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #34495e;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.input-container {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  
  .input-container input {
    width: 100%;
    padding-right: 30px;
  }
  
  .input-container .checkmark {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }


.submit-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #e55c00;
}
