
/* -----------İNDEX NEW_REGISTER------------*/ 

       :root {
            --primary: #006699;
            --secondary: #3399cc;
            --accent: #00b0f1;
            --button: #009b98;
            --background: #effdf5;
            --text: #2c3e50;
            --light: #ffffff;
            --error: #e74c3c;
            --success: #27ae60;
            --border: #dce6f0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--background);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px;
        }
        
        .login-wrapper {
            background: var(--light);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 55, 221, 0.15);
            overflow: hidden;
            width: 100%;
            max-width: 500px;
            display: flex;
            min-height: 600px;
        }
        
        .login-left {
            flex: 1;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .login-left::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }
        
        .brand-logo {
            margin-bottom: 30px;
        }
        
        .brand-logo i {
            font-size: 48px;
            margin-bottom: 15px;
            display: block;
        }
        
        .brand-logo h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .brand-logo p {
            opacity: 0.9;
            font-size: 16px;
        }
        
        .features {
            margin-top: 40px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .feature-item i {
            font-size: 20px;
            margin-right: 15px;
            background: rgba(255, 255, 255, 0.2);
            padding: 10px;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .login-right {
            flex: 1;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-group { /* input form kutusu*/
            margin-bottom: 25px;
        }
        
        .form-group label { 
            display: block;
            margin-bottom: 8px;
            color: var(--text);
            font-weight: 600;
            font-size: 14px;
        }
   
         .input-with-icon { /* input kutusu icon*/
            position: relative;
        }
        
         .input-with-icon i { /* input kutusu icon*/
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-30%);
            color: var(--accent);
        }
        
        .input-with-icon input { /* input kutusu icon*/
            padding-right: 10px;
        }
 */       
        input[type="email"],
        input[type="password"] {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #fafbfc;
        }
        
        input[type="email"]:focus,
        input[type="password"]:focus {
            outline: none;
            border-color: var(--accent);
            background: var(--light);
            box-shadow: 0 0 0 3px rgba(0, 176, 241, 0.1);
        }
        
		/* BUTON  */
        .btn-buton { 
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--button) 0%, var(--accent) 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .btn-buton:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 155, 152, 0.4);
        }
        
		
        .alert {
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 25px;
            font-size: 14px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .alert-error {
            background: #fee;
            color: var(--error);
            border: 1px solid #fcc;
        }
        
        .alert-success {
            background: #effdf5;
            color: var(--success);
            border: 1px solid #bfe;
        }
        
        .login-links {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
        
        .login-links a {
            color: var(--secondary);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            margin: 0 10px;
        }
        
        .login-links a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        
      /*  .footer {
            text-align: center;
            margin-top: 40px;
            color: var(--text);
            font-size: 12px;
            opacity: 0.7;
        }
      */  





 /* -------------------------------- NEW REGISTER ------------------------------------------------- */ 

   

        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .container {/* index, new_regester*/
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 500px;
            overflow: hidden;
            border: 1px solid var(--border);
        }
        
        .header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 25px;
            text-align: center;
        }
        
        .header h1 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .header p {
            opacity: 0.9;
            font-size: 14px;
        }
        
        .form-container {
            padding: 30px;
        }
        

        .form-group input {
            width: 100%;
            padding: 14px 15px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
            background: #fafbfc;
        }
         
        .form-group input:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 176, 241, 0.1);
            background: white;
        }
      
        .input-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 18px;
            z-index: 2;
        }
        
        .input-icon:hover {
            color: var(--accent);
        }
        

        .login-link {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
        
        .login-link a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
        }
        
        .login-link a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        
	
        @media (max-width: 480px) {
            .container {
                border-radius: 10px;
            }
            
            .form-container {
                padding: 20px;
            }
        }
