PNG IHDR x sBIT|d pHYs + tEXtSoftware www.inkscape.org< ,tEXtComment
<x-guest-layout>
<div class="min-h-screen w-full bg-gradient-to-br from-gray-50 via-white to-gray-100 dark:from-gray-900 dark:via-gray-800 dark:to-gray-900 p-4 sm:p-6 md:p-8 flex items-center justify-center">
<!-- Additional floating elements with animations -->
<div class="fixed top-20 left-20 w-24 h-24 bg-yellow-400/20 rounded-full animate-pulse"></div>
<div class="fixed bottom-20 right-20 w-16 h-16 bg-yellow-500/20 rounded-full animate-bounce delay-300"></div>
<div class="fixed top-1/3 right-1/4 w-12 h-12 bg-yellow-300/20 rounded-full animate-ping"></div>
<div class="w-full max-w-md animate-fadeIn">
<!-- Card Container -->
<div class="relative bg-white dark:bg-gray-800 rounded-3xl shadow-xl p-8 border border-gray-100 dark:border-gray-700 transition-all duration-300 hover:shadow-2xl transform hover:-translate-y-1">
<!-- Decorative Elements -->
<div class="absolute -top-8 -right-8 w-32 h-32 bg-yellow-400/20 dark:bg-yellow-600/10 rounded-full blur-3xl animate-pulse"></div>
<div class="absolute -bottom-8 -left-8 w-32 h-32 bg-yellow-500/20 dark:bg-yellow-500/10 rounded-full blur-3xl animate-pulse delay-150"></div>
<!-- Content -->
<div class="relative">
<!-- Header with icon -->
<div class="text-center mb-8 animate-slideDown">
<div class="inline-flex items-center justify-center w-16 h-16 mb-4 rounded-full bg-yellow-100 dark:bg-yellow-900/30">
<svg xmlns="http://www.w3.org/2000/svg" class="w-8 h-8 text-yellow-500 dark:text-yellow-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 11c0 3.517-1.009 6.799-2.753 9.571m-3.44-2.04l.054-.09A13.916 13.916 0 008 11a4 4 0 118 0c0 1.017-.07 2.019-.203 3m-2.118 6.844A21.88 21.88 0 0015.171 17m3.839 1.132c.645-2.266.99-4.659.99-7.132A8 8 0 008 4.07M3 15.364c.64-1.319 1-2.8 1-4.364 0-1.457.39-2.823 1.07-4" />
</svg>
</div>
<h1 class="text-2xl font-bold text-gray-900 dark:text-white mb-2">Welcome back</h1>
<p class="text-gray-600 dark:text-gray-400">Please enter your details</p>
</div>
<x-auth-session-status class="mb-4" :status="session('status')" />
<!-- Login Form -->
<form method="POST" action="{{ route('login') }}" class="space-y-5">
@csrf
<!-- Login Field -->
<div class="space-y-2 animate-slideUp" style="animation-delay: 100ms;">
<x-input-label
for="login"
:value="__('UUID or Email')"
class="text-sm font-medium text-gray-700 dark:text-gray-300"
/>
<div class="relative group">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-gray-400 dark:text-gray-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
</svg>
</div>
<input
id="login"
type="text"
name="login"
:value="old('login')"
required
autofocus
autocomplete="username"
class="w-full pl-10 pr-4 py-3 bg-gray-50 dark:bg-gray-700/50 border-2 border-gray-200 dark:border-gray-600 rounded-xl focus:ring-2 focus:ring-yellow-500 dark:focus:ring-yellow-600 focus:border-transparent dark:text-gray-200 text-sm transition-all duration-300 placeholder-gray-400 dark:placeholder-gray-500 group-hover:border-yellow-500 dark:group-hover:border-yellow-600"
placeholder="Enter your UUID or email"
/>
<div class="absolute inset-y-0 right-0 pr-3 flex items-center transition-opacity duration-300 opacity-0 group-focus-within:opacity-100">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
</div>
<x-input-error :messages="$errors->get('login')" class="mt-1" />
</div>
<!-- Password Field -->
<div class="space-y-2 animate-slideUp" style="animation-delay: 200ms;">
<x-input-label
for="password"
:value="__('Password')"
class="text-sm font-medium text-gray-700 dark:text-gray-300"
/>
<div class="relative group">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-gray-400 dark:text-gray-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" />
</svg>
</div>
<input
id="password"
type="password"
name="password"
required
autocomplete="current-password"
class="w-full pl-10 pr-4 py-3 bg-gray-50 dark:bg-gray-700/50 border-2 border-gray-200 dark:border-gray-600 rounded-xl focus:ring-2 focus:ring-yellow-500 dark:focus:ring-yellow-600 focus:border-transparent dark:text-gray-200 text-sm transition-all duration-300 placeholder-gray-400 dark:placeholder-gray-500 group-hover:border-yellow-500 dark:group-hover:border-yellow-600"
placeholder="••••••••"
/>
</div>
<x-input-error :messages="$errors->get('password')" class="mt-1" />
</div>
<!-- Remember Me & Forgot Password -->
<div class="flex items-center justify-between pt-2 animate-slideUp" style="animation-delay: 300ms;">
<label class="flex items-center group">
<input
type="checkbox"
name="remember"
class="w-4 h-4 bg-gray-50 dark:bg-gray-700 border-2 border-gray-200 dark:border-gray-600 rounded text-yellow-500 focus:ring-yellow-500 dark:focus:ring-yellow-600 transition-all duration-300 group-hover:border-yellow-500"
/>
<span class="ml-2 text-sm text-gray-600 dark:text-gray-400 group-hover:text-yellow-500 dark:group-hover:text-yellow-400 transition-colors duration-300">
{{ __('Remember me') }}
</span>
</label>
@if (Route::has('password.request'))
<a href="{{ route('password.request') }}"
class="text-sm text-yellow-600 hover:text-yellow-700 dark:text-yellow-400 dark:hover:text-yellow-300 transition-all duration-300 hover:underline">
{{ __('Forgot password?') }}
</a>
@endif
</div>
<!-- Sign In Button -->
<button
type="submit"
class="w-full px-4 py-3 mt-6 text-sm font-medium text-white bg-yellow-500 hover:bg-yellow-600 dark:bg-yellow-600 dark:hover:bg-yellow-700 rounded-xl transition-all duration-300 transform hover:scale-[1.02] hover:shadow-lg focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-yellow-500 dark:focus:ring-offset-gray-800 animate-slideUp group"
style="animation-delay: 400ms;"
>
<span class="flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-2 transform transition-transform duration-300 group-hover:translate-x-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3" />
</svg>
{{ __('Sign in') }}
</span>
</button>
</form>
<!-- Register Link -->
<div class="mt-8 text-center animate-slideUp" style="animation-delay: 500ms;">
<p class="text-sm text-gray-600 dark:text-gray-400">
Don't have an account?
<a href="{{ route('register') }}"
class="font-medium text-yellow-600 hover:text-yellow-700 dark:text-yellow-400 dark:hover:text-yellow-300 transition-all duration-300 hover:underline ml-1">
{{ __('Create account') }}
</a>
</p>
</div>
</div>
</div>
</div>
</div>
<style>
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideUp {
from { transform: translateY(20px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
@keyframes slideDown {
from { transform: translateY(-20px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
.animate-fadeIn {
animation: fadeIn 0.6s ease-out;
}
.animate-slideUp {
opacity: 0;
animation: slideUp 0.5s ease-out forwards;
}
.animate-slideDown {
opacity: 0;
animation: slideDown 0.5s ease-out forwards;
}
</style>
</x-guest-layout>
b IDATxytVսϓ22 A@IR:hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-E