/* style.css - Turuncu Temalı Modern Form Tasarımı */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #ff6a00, #ee0979);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .container {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
  }
  
  .container:hover {
    transform: scale(1.01);
  }
  
  h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #ff6a00;
    font-size: 24px;
  }
  
  .form-group {
    margin-bottom: 18px;
    position: relative;
  }
  
 .input {
    width: 100%;
    box-sizing: border-box; 
  }

  .form-group input {
    width: 100%;
    box-sizing: border-box; 
    padding: 12px 45px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    background-color: #fafafa;
    transition: 0.3s;
  }
  
  .form-group input:focus {
    border-color: #ff6a00;
    background-color: #fff;
    outline: none;
  }
  
  .form-group i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #ff6a00;
    font-size: 16px;
  }
  
  button {
    width: 100%;
    background: #ff6a00;
    color: white;
    padding: 13px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  button:hover {
    background: #e65100;
  }
  
  a {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
  }
  
  a:hover {
    color: #ff6a00;
    text-decoration: underline;
  }
  