Changed around line 1
+ :root {
+ --primary-color: #4a90e2;
+ --error-color: #ff4444;
+ --bg-color: #f5f7fa;
+ --text-color: #2c3e50;
+ --shadow-color: rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ background: var(--bg-color);
+ color: var(--text-color);
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+
+ .container {
+ width: 100%;
+ max-width: 600px;
+ padding: 2rem;
+ }
+
+ .proxy-form {
+ background: white;
+ padding: 3rem;
+ border-radius: 20px;
+ box-shadow: 0 10px 30px var(--shadow-color);
+ animation: fadeIn 0.5s ease-out;
+ }
+
+ h1 {
+ text-align: center;
+ margin-bottom: 2rem;
+ color: var(--primary-color);
+ font-size: 2.5rem;
+ font-weight: 700;
+ }
+
+ form {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 1rem;
+ }
+
+ .input-group {
+ flex: 1 1 250px;
+ }
+
+ input {
+ width: 100%;
+ padding: 1rem;
+ border: 2px solid #e1e8ed;
+ border-radius: 12px;
+ font-size: 1rem;
+ transition: all 0.3s ease;
+ }
+
+ input:focus {
+ outline: none;
+ border-color: var(--primary-color);
+ box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
+ }
+
+ .visit-btn {
+ width: 60px;
+ height: 60px;
+ border: none;
+ border-radius: 50%;
+ background: var(--primary-color);
+ cursor: pointer;
+ transition: transform 0.3s ease, background-color 0.3s ease;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+
+ .visit-btn:hover {
+ transform: scale(1.05);
+ background: #357abd;
+ }
+
+ .globe-icon {
+ width: 30px;
+ height: 30px;
+ fill: white;
+ }
+
+ .error {
+ color: var(--error-color);
+ text-align: center;
+ margin-top: 1rem;
+ min-height: 20px;
+ font-size: 0.9rem;
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ @media (max-width: 480px) {
+ .proxy-form {
+ padding: 2rem;
+ }
+
+ .visit-btn {
+ width: 50px;
+ height: 50px;
+ }
+
+ .globe-icon {
+ width: 25px;
+ height: 25px;
+ }
+ }