@charset "UTF-8";
        
    
:root {
            --error-color: #dc3545;
            --success-color: #28a745;
            --primary-color: #007bff;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
        }
        
        h1 {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-weight: 600;
        }
        
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #495057;
        }
        
        .required::after {
            content: " *";
            color: var(--error-color);
        }
        
        input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e1e5e9;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: #f8f9fa;
        }
        
        input:focus {
            outline: none;
            border-color: var(--primary-color);
            background-color: white;
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        }
        
        input[type=text] {
  padding: 10px;
	border-radius:10px;
}
input[type=email] {
  padding: 10px;
	border-radius:10px;
}
input[type=submit] {
  display: inline-block;
  border-radius: 5px;
  padding: 15px 15px;
  font-size: 26px;
	width:300px;
  text-decoration: none;
  margin: 0px;
  color: white;
  background: #55acee;
  box-shadow: 0 2px 0 #3C93D5;
  transition: .5s;
	border-radius:10px;
}
input[type=submit]:hover {
  background: #6FC6FF;
}
input[type=text]:invalid {
	background: #F6DCDD;
}
input,
input[type=text]:valid {
	background: #D4EEE4 ;
}
input[type=email]:invalid {
	background: #F6DCDD;
}
input[type=email]:valid {
	background: #D4EEE4 ;
}
        
button {
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }
        
        button:active {
            transform: translateY(0);
        }
        
        button:disabled {
            background: #6c757d;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }        